
dcloud官方应该没有很擅长写样式的人,要弄暗黑模式的话要好好整理整理uni.scss和组件
很多组件样式颜色背景都写死了还是不同的默认样式,而且可能因为是不同的人写的,
虽然有uni.scss,但是都没怎么引用各写各的。
这也导致了ui框架很难直接写一套暗黑模式。
如果分类管理的好,uni.scss写一套浅色,一套暗黑,引用那里批量变一下就可以。
我用过quasar framework,组件样式方面写的很好,都不需要自己写css,根组件一个mode="dark"直接全部子组件跟着变色
hello-uniapp中组件演示也写的很乱,不应该写乱七八糟的其他的padding,margin,display,color,backgroud
flex就应该只用uni-flex的class
一组一组就是uni-group
一个个小标题就应该是uni-section
ui这个活吃力不讨好,不知道dcloud会花多大力气继续在uni-ui上面
很多组件样式颜色背景都写死了还是不同的默认样式,而且可能因为是不同的人写的,
虽然有uni.scss,但是都没怎么引用各写各的。
这也导致了ui框架很难直接写一套暗黑模式。
如果分类管理的好,uni.scss写一套浅色,一套暗黑,引用那里批量变一下就可以。
我用过quasar framework,组件样式方面写的很好,都不需要自己写css,根组件一个mode="dark"直接全部子组件跟着变色
hello-uniapp中组件演示也写的很乱,不应该写乱七八糟的其他的padding,margin,display,color,backgroud
flex就应该只用uni-flex的class
一组一组就是uni-group
一个个小标题就应该是uni-section
ui这个活吃力不讨好,不知道dcloud会花多大力气继续在uni-ui上面
收起阅读 »
uni.showToast方法设置icon属性值为error时在微信开发者工具中图标失效,显示属性值为success时的图标
uni.showToast方法设置icon属性值为error时在微信开发者工具中图标失效,显示属性值为success时的图标
uni.showToast方法设置icon属性值为error时在微信开发者工具中图标失效,显示属性值为success时的图标

解决 uni-admin 左侧菜单折叠的问题
uni-nav-menu.vue
约190行
// 关闭所有
closeAll() {
let url = this.active.substring(1);
this.subChildrens.forEach((item) => {
let childrens = item.index.children;
let num = 0;
for (let i=0; i<childrens.length; i++){
let obj = childrens[i];
console.log(obj.value);
if (obj.value == url){
num ++;
}
}
if (item.isOpen && num==0) {
item.isOpen = false
}
})
}
uni-nav-menu.vue
约190行
// 关闭所有
closeAll() {
let url = this.active.substring(1);
this.subChildrens.forEach((item) => {
let childrens = item.index.children;
let num = 0;
for (let i=0; i<childrens.length; i++){
let obj = childrens[i];
console.log(obj.value);
if (obj.value == url){
num ++;
}
}
if (item.isOpen && num==0) {
item.isOpen = false
}
})
}

如何实现 Android 短视频跨页面的流畅续播?
在一切皆可视频化的今天,短视频内容作为移动端产品新的促活点,受到了越来越多的重视与投入,同时短视频也是增加用户粘性、增加用户停留时长的一把利器。那么如何快速实现移动端短视频功能呢?前两篇我们介绍了盒马短视频秒播优化(iOS 篇 / Android 篇),本篇我们聊聊秒播之外,另一个从体感上增加短视频用户体验的能力 - 续播。
作者|少阳
审校|泰一
短视频作为内容重要的承载方式,是吸引用户的重点,短视频的内容与体验直接关系到用户是否愿意长时停留。因此,体验的优化就显得尤为重要。
跨页面续播
跨页面续播是除秒播外另一个可以从体感上增加用户体验的能力。由于一些业务场景需要在不同页面上播放同一个视频内容的场景,而这些场景页面切换往往是连续的,这就要求短视频的播放也是连续。这样才能使得体验上会有连贯性,让用户在进入沉浸式页面时,能流畅的过度,并无感知的继续播放,从而产生连续不间断的感受。
在优化前,盒马沉浸式短视频播放页面的体验与主流短视频 App 有明显差距。从卡片列表页面跳转视频沉浸式页面时,相同视频无法续播,影响用户观赏和体验。下面主要介绍盒马短视频从普通展示页进入沉浸式页面时跨页面续播能力和流畅的动画切换效果的实现过程。
环境
- 手机:Pixel 4
- os:Android 10
- 播放器:淘宝播放器
效果对比
首先我们来看一下盒马优化前后与主流短视频 App 的效果对比
!
https://v.youku.com/v_show/id_XNTgwNDIwOTM1Ng==.html
问题分析
从对比可以看出,续播的关键在于视频流的复用以及页面转场动画。
视频流的复用
要解决流的复用,同时又要保证进入新的页面时可以立即播放,不产生声音和画面的顿挫,这里根据上一篇《揭秘盒马鲜生 APP Android 短视频秒播优化方案》的分析,必须要解决视频下载,加载解码的耗时。
- 根据《揭秘盒马鲜生 APP Android 短视频秒播优化方案》里讲到缓存原理,这里可以利用播放器播放同一个视频(注意统一 URL,盒马全部转为 H.265)来避免多次下载。
- 加载解码的耗时则需要播放器复用来解决。这里涉及到实现方案,可参照下一章的续播方案选型。
转场动画
转场动画能显著提高体感流畅度,但实现过程中需要考虑各种兼容问题。
续播方案选型
在优化前期,我们考虑了三种续播方案。
-
播放器 View 跨页面传递
优点:思路简单,体验效果好。
缺点:业务侵入严重,不具通用性,播放器业务回调无法隔离,不利于续播放器管控。 -
基于 Surface (View) 级别的全局播放器管理
优点:体验效果好,能扩展内存管控,侵入性低。
缺点:实现复杂,需要改写底层 HMVideoView 的封装逻辑;改造中易出现内存泄漏,较难排查。 -
基于 MediaPlayer 级别的全局播放器管理
优点:无侵入,能扩展内存管控,实现快(可复用和扩展淘宝播放器底层 token 机制)
缺点:需要一定的改造,体验比方案 1、2 略差(声音有一瞬间的顿挫,不明显)
盒马最终选择方案 3,这里方案 2 和 3 原理是相同的,没有明显的优劣之分,最终选择方案 3 是因为这是目前稳定性最高,成本最低的方法。后续的播放器续播、复用、管理的分析同样适用于方案 2。
播放器续播、复用和管理
业务上,我们需要实现续播,通过问题分析,我们已经知道,通过视频流的复用即可实现,而视频流的复用这里选择通过复用 MediaPlayer 实现(也可以复用 Surface+MediaPlayer)。
解耦播放器 View 与 MediaPlayer 层
将 MediaPlayer 从 TaobaoPlayerView 中拆解出来,通过 MediaPlayerManager 进行全局管理。全局管理后,所有的播放器的 MediaPlayer 都由 MediaPlayerManager 分配和控制。
各组建间关系
业务流程
确保业务流程中,只需要关心业务与 VideoView 之间的交互,底层播放器复用由 MediaPlayerManager 实现。
播放器复用(管理)原理
播放器复用是管理的一个子集,所以这里一起介绍。主要原来有以下几个原则:
- 全局播放器(MediaPlayer)控制最多创建 4 个。
- 超过 4 个播放器,创建第 5 个时,先销毁最少使用的播放器的 MediaPlayer。
- 每个播放器随机分配一个 token(时间戳 + 随机数),也可以开发者指定。
- 相同 token 的播放器,共享 MediaPlayer。
- 一个 MediaPlayer 同时只能被 1 个播放器 Surface 所绑定和持有。
- 存在相同 token 的播放器,当前播放器在销毁时,保留 MediaPlayer 实例。
- 已创建的播放器恢复播放,但 MediaPlayer 被其他后创建的播放器占用时,解绑 MediaPlayer 并重新绑定当前播放器。
场景模拟
场景一:APP 共创建 4 个及以内播放器。
场景二:创建超过 4 个播放器时。
场景三:新创建的播放器 token 已存在时,复用 MediaPlayer。
场景四:存在 token 与当前即将被销毁的播放器 token 一致时(或已被解除 MediaPlayer 的播放器播放时)。
逻辑流程图
从场景总结,MediaPlayer 主要提供 复用、恢复、销毁、驱逐(创建) 四个能力。
转场动画
目前转场动画有两个方案可选:
-
Android 自带的元素动画
优点:动画流畅顺滑,无需实现动画逻辑,由系统自己实现。
缺点:侵入严重,需要改写 Nav 层,在 View 复用的方案下有白屏和黑屏。 -
自定义实现属性动画
优点:侵入小,只需要前置页极少的坐标信息,如果是 View 复用方案,甚至不需要前置页提供坐标信息;兼容性好,适用于各种播放器复用场景。
缺点:需要自己实现动画,有一定的闪烁感。
动画原理
- 前置页跳转到沉浸式,传递播放器坐标 Rect 信息。
- 沉浸式默认透明,并根据 Rect 坐标信息创建播放器(复用)。
- 开始动画,将播放器 View 放大至正确位置,同时背景不透明度增加。
(注意:这里最后要将沉浸式页的主题设为不透明,否则前置页不会执行 onStop () 具体参考下一节,生命周期填坑。)
ps:返回动画同理,过程相反即可。
生命周期填坑
属性动画原理存在一个坑。
问题描述:
假设页面为 A->B,方案 3 要求 B 页面在动画过程中是全透明的。当 B 的 theme 中 windowIsTranslucent 为 true 时,A->B 过程 A 的生命周期无法走向 stop(即便 B 页面动画结束,完全遮盖 A 页面)。因此,A 的生命周期没有按照预期执行,一些需要 onStop 执行的场景下,业务就无法正常执行
B Ativity 的样式(注:示例代码):
<style name="MyTransparent" parent="xxxx">
<item name="android:windowFullscreen">false</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:colorBackgroundCacheHint">@null</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:background">@android:color/transparent</item>
<item name="android:windowAnimationStyle">@style/noAnimation</item>
</style>
解决方案:
- 进入动画结束时,通过反射调用 Activity 的 convertFromTranslucent 方法, 使 activity 不透明。
- 返回动画开始时,通过反射调用 Activity 的 convertToTranslucent 方法,使 activity 透明。
后续优化展望
关于多媒体的优化工作还有很多可以做。除了续播和沉浸式秒播等场景外,我们还可以:
**1. 对播放器的一般性场景进行秒播优化,如首页列表的卡片视频。
- 对播放器的全局实例管控,控制播放器创建数量,从而优化内存。**
未优化:
操作:连续开启 30~50 个页面及播放器。
现象:内存飙升,手机发烫,影响手机正常使用。
优化后:
操作:每秒开启 1 个页面和播放器,连续开启 100 个。
现象:内存呈锯齿状正常上升,无明显飙升现象,软件运行正常。
下一期我们将继续分享盒马 iOS 端短视频续播的体验优化实践。
「视频云技术」你最值得关注的音视频技术公众号,每周推送来自阿里云一线的实践技术文章,在这里与音视频领域一流工程师交流切磋。公众号后台回复【技术】可加入阿里云视频云产品技术交流群,和业内大咖一起探讨音视频技术,获取更多行业最新信息。
在一切皆可视频化的今天,短视频内容作为移动端产品新的促活点,受到了越来越多的重视与投入,同时短视频也是增加用户粘性、增加用户停留时长的一把利器。那么如何快速实现移动端短视频功能呢?前两篇我们介绍了盒马短视频秒播优化(iOS 篇 / Android 篇),本篇我们聊聊秒播之外,另一个从体感上增加短视频用户体验的能力 - 续播。
作者|少阳
审校|泰一
短视频作为内容重要的承载方式,是吸引用户的重点,短视频的内容与体验直接关系到用户是否愿意长时停留。因此,体验的优化就显得尤为重要。
跨页面续播
跨页面续播是除秒播外另一个可以从体感上增加用户体验的能力。由于一些业务场景需要在不同页面上播放同一个视频内容的场景,而这些场景页面切换往往是连续的,这就要求短视频的播放也是连续。这样才能使得体验上会有连贯性,让用户在进入沉浸式页面时,能流畅的过度,并无感知的继续播放,从而产生连续不间断的感受。
在优化前,盒马沉浸式短视频播放页面的体验与主流短视频 App 有明显差距。从卡片列表页面跳转视频沉浸式页面时,相同视频无法续播,影响用户观赏和体验。下面主要介绍盒马短视频从普通展示页进入沉浸式页面时跨页面续播能力和流畅的动画切换效果的实现过程。
环境
- 手机:Pixel 4
- os:Android 10
- 播放器:淘宝播放器
效果对比
首先我们来看一下盒马优化前后与主流短视频 App 的效果对比
!
https://v.youku.com/v_show/id_XNTgwNDIwOTM1Ng==.html
问题分析
从对比可以看出,续播的关键在于视频流的复用以及页面转场动画。
视频流的复用
要解决流的复用,同时又要保证进入新的页面时可以立即播放,不产生声音和画面的顿挫,这里根据上一篇《揭秘盒马鲜生 APP Android 短视频秒播优化方案》的分析,必须要解决视频下载,加载解码的耗时。
- 根据《揭秘盒马鲜生 APP Android 短视频秒播优化方案》里讲到缓存原理,这里可以利用播放器播放同一个视频(注意统一 URL,盒马全部转为 H.265)来避免多次下载。
- 加载解码的耗时则需要播放器复用来解决。这里涉及到实现方案,可参照下一章的续播方案选型。
转场动画
转场动画能显著提高体感流畅度,但实现过程中需要考虑各种兼容问题。
续播方案选型
在优化前期,我们考虑了三种续播方案。
-
播放器 View 跨页面传递
优点:思路简单,体验效果好。
缺点:业务侵入严重,不具通用性,播放器业务回调无法隔离,不利于续播放器管控。 -
基于 Surface (View) 级别的全局播放器管理
优点:体验效果好,能扩展内存管控,侵入性低。
缺点:实现复杂,需要改写底层 HMVideoView 的封装逻辑;改造中易出现内存泄漏,较难排查。 -
基于 MediaPlayer 级别的全局播放器管理
优点:无侵入,能扩展内存管控,实现快(可复用和扩展淘宝播放器底层 token 机制)
缺点:需要一定的改造,体验比方案 1、2 略差(声音有一瞬间的顿挫,不明显)
盒马最终选择方案 3,这里方案 2 和 3 原理是相同的,没有明显的优劣之分,最终选择方案 3 是因为这是目前稳定性最高,成本最低的方法。后续的播放器续播、复用、管理的分析同样适用于方案 2。
播放器续播、复用和管理
业务上,我们需要实现续播,通过问题分析,我们已经知道,通过视频流的复用即可实现,而视频流的复用这里选择通过复用 MediaPlayer 实现(也可以复用 Surface+MediaPlayer)。
解耦播放器 View 与 MediaPlayer 层
将 MediaPlayer 从 TaobaoPlayerView 中拆解出来,通过 MediaPlayerManager 进行全局管理。全局管理后,所有的播放器的 MediaPlayer 都由 MediaPlayerManager 分配和控制。
各组建间关系
业务流程
确保业务流程中,只需要关心业务与 VideoView 之间的交互,底层播放器复用由 MediaPlayerManager 实现。
播放器复用(管理)原理
播放器复用是管理的一个子集,所以这里一起介绍。主要原来有以下几个原则:
- 全局播放器(MediaPlayer)控制最多创建 4 个。
- 超过 4 个播放器,创建第 5 个时,先销毁最少使用的播放器的 MediaPlayer。
- 每个播放器随机分配一个 token(时间戳 + 随机数),也可以开发者指定。
- 相同 token 的播放器,共享 MediaPlayer。
- 一个 MediaPlayer 同时只能被 1 个播放器 Surface 所绑定和持有。
- 存在相同 token 的播放器,当前播放器在销毁时,保留 MediaPlayer 实例。
- 已创建的播放器恢复播放,但 MediaPlayer 被其他后创建的播放器占用时,解绑 MediaPlayer 并重新绑定当前播放器。
场景模拟
场景一:APP 共创建 4 个及以内播放器。
场景二:创建超过 4 个播放器时。
场景三:新创建的播放器 token 已存在时,复用 MediaPlayer。
场景四:存在 token 与当前即将被销毁的播放器 token 一致时(或已被解除 MediaPlayer 的播放器播放时)。
逻辑流程图
从场景总结,MediaPlayer 主要提供 复用、恢复、销毁、驱逐(创建) 四个能力。
转场动画
目前转场动画有两个方案可选:
-
Android 自带的元素动画
优点:动画流畅顺滑,无需实现动画逻辑,由系统自己实现。
缺点:侵入严重,需要改写 Nav 层,在 View 复用的方案下有白屏和黑屏。 -
自定义实现属性动画
优点:侵入小,只需要前置页极少的坐标信息,如果是 View 复用方案,甚至不需要前置页提供坐标信息;兼容性好,适用于各种播放器复用场景。
缺点:需要自己实现动画,有一定的闪烁感。
动画原理
- 前置页跳转到沉浸式,传递播放器坐标 Rect 信息。
- 沉浸式默认透明,并根据 Rect 坐标信息创建播放器(复用)。
- 开始动画,将播放器 View 放大至正确位置,同时背景不透明度增加。
(注意:这里最后要将沉浸式页的主题设为不透明,否则前置页不会执行 onStop () 具体参考下一节,生命周期填坑。)
ps:返回动画同理,过程相反即可。
生命周期填坑
属性动画原理存在一个坑。
问题描述:
假设页面为 A->B,方案 3 要求 B 页面在动画过程中是全透明的。当 B 的 theme 中 windowIsTranslucent 为 true 时,A->B 过程 A 的生命周期无法走向 stop(即便 B 页面动画结束,完全遮盖 A 页面)。因此,A 的生命周期没有按照预期执行,一些需要 onStop 执行的场景下,业务就无法正常执行
B Ativity 的样式(注:示例代码):
<style name="MyTransparent" parent="xxxx">
<item name="android:windowFullscreen">false</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:colorBackgroundCacheHint">@null</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:background">@android:color/transparent</item>
<item name="android:windowAnimationStyle">@style/noAnimation</item>
</style>
解决方案:
- 进入动画结束时,通过反射调用 Activity 的 convertFromTranslucent 方法, 使 activity 不透明。
- 返回动画开始时,通过反射调用 Activity 的 convertToTranslucent 方法,使 activity 透明。
后续优化展望
关于多媒体的优化工作还有很多可以做。除了续播和沉浸式秒播等场景外,我们还可以:
**1. 对播放器的一般性场景进行秒播优化,如首页列表的卡片视频。
- 对播放器的全局实例管控,控制播放器创建数量,从而优化内存。**
未优化:
操作:连续开启 30~50 个页面及播放器。
现象:内存飙升,手机发烫,影响手机正常使用。
优化后:
操作:每秒开启 1 个页面和播放器,连续开启 100 个。
现象:内存呈锯齿状正常上升,无明显飙升现象,软件运行正常。
下一期我们将继续分享盒马 iOS 端短视频续播的体验优化实践。
收起阅读 »「视频云技术」你最值得关注的音视频技术公众号,每周推送来自阿里云一线的实践技术文章,在这里与音视频领域一流工程师交流切磋。公众号后台回复【技术】可加入阿里云视频云产品技术交流群,和业内大咖一起探讨音视频技术,获取更多行业最新信息。

专业ios 安卓原生开发工程师,承接各种uniapp原生插件定制开发。
本人专业原生开发,承接各种定制插件,有意者帖子回帖联系!QQ 1149769831
本人专业原生开发,承接各种定制插件,有意者帖子回帖联系!QQ 1149769831

揭秘盒马鲜生 Android 短视频秒播优化方案
短视频作为内容重要的承载方式,是吸引用户的重点,短视频的内容与体验直接关系到用户是否愿意长时停留。因此,体验的优化就显得尤为重要。上一篇我们分享了 iOS 短视频秒播优化,这篇我们来聊聊 Android 端的优化。
作者|少阳
审校|泰一
优化前的盒马沉浸式短视频播放页面,体感和流畅度上与主流短视频 App 有明显差距。主要问题有播放封面闪屏、出流速度慢两个问题。所以优化的目标是解决盒马沉浸式短视频现有短板,与主流 App 的沉浸式短视频体验对齐,如抖音、手淘等。具体指标有:
- 满足硬性指标:播放成功率、首帧时长、秒开率。
- 满足用户体感流畅度。(为反应用户观看短视频过程中的真实体验,盒马新增秒播体感指标:从用户划到视频,到视频首帧播放的时间。)
优化效果对比
首先我们来看一下优化前后与其他 App 的效果对比:
https://v.youku.com/v_show/id_XNTgwMzAwNDQ0OA==.html
环境
- 手机:Pixel 4
- OS:Android 10
- 播放器:淘宝播放器
问题分析
首页闪屏
盒马最初为了保证进入画面时不是空白页面而增加了封面图显示,在播放时隐藏。从体感指标可以看出,即便是优化前,体感播放时间很短,只有 200ms 左右(不包含滑动过程)。由于滑动过程中,到视频正式播放有约 600ms 左右时间显示封面,随后又迅速显示播放画面,此时用户仍有强烈的屏幕闪烁和顿挫感,体验极差。
解决思路:在滑动过程中就显示视频首帧画面,不再显示封面,则播放时不再产生顿挫感。这里的优化需要结合出流慢问题一起优化。
出流速度慢(播放体感慢)
服务端:服务端造成的出流速度慢,一般是文件大,网络链路差造成。可用 H.265 和 CDN 加速优化
客户端:客户端播放需要经历下载 -> 加载 + 解码 -> 渲染三个步骤,并且三个步骤为线性执行。所以在窗口播放画面前必然需要经过 1s 左右的准备工作。这里可以考虑提前执行下载 -> 加载 + 解码。
优化方案选型
在优化前期,我们考虑了三种优化方案。
方案一:双播放器 + 预下载
优点:占内存小,思路简单。
缺点:优化力度有限,无法同时兼顾上滑和下滑。
方案二:自定义三播放器管理 + 预下载
优点:同时兼顾上下翻页,体验接近抖音。
缺点:播放器管理与回收实现复杂,容易错乱;占用内存高。
方案三:三播放器(基于 RecyclerView 的缓存机制实现)+ 预下载
优点:同时兼顾上下翻页,体验接近抖音,缓存机制由 RecyclerView 托管。
缺点:占用内存高,频繁创建和销毁播放器。
最终因为性价比因素,选择了第三个方案。
方案三原理:翻页前
- current 播放器开始播放视频 1。
- pre,next 播放器分别加载视频数据 0 和 2。
- 同时视频数据 3-7 加入预下载队列。
方案三原理:翻页后
- 被 RecyclerView 回收的 holder 销毁播放器。
- RecyclerView onBind 中的 holder 创建新的 next 播放器。
- current 播放器开始播放视频 2。
- pre 播放器 seek 0 并暂停, next 播放器创建并加载视频 3 文件。
- 同时预下载清除未消费的队列,视频数据 4-8 加入预下载队列开始下载(此处已有缓存的视频不会被重复下载)。
具体优化方案
多播放器改造
为了解决体感上的顿挫和出流慢的问题,采用多播放器结合 RecyclerView 方案进行改造,步骤如下:
- 设置缓存数量:利用 RecyclerView 特性,配置 setItemViewCacheSize,确保内存中存在 3 个 holder(缓存的 1 个 holder,预创建 1 个 holder, 当前 holder)。
mRecyclerView.setItemViewCacheSize(1); // 设置缓存数量
- 重写 Adapter 的 onBindViewHolder, 用于创建播放器,并预加载解码视频内容,播放器控制解析到首帧时暂停。此时 onSurfaceCreated 尚未回调,画面未渲染至屏幕。
- 监听 onPageRelase 控制即将移除屏幕的播放器暂停,并 seekTo (0),方便滑回屏幕时立即播放。
- 监听 onPageSelected 控制即将进入屏幕的播放器开始播放。注意:由于在 onBindViewHolder 期间已解码完成,这里只需要进入屏幕 1px,就会立即触发 Surface 的绘制(只会执行一次),即进入窗口的内容会显示视频的首帧画面。
- 重写 Adapter 的 onViewRecycled, 由于当前 holder 即将移出屏幕,移出方向上屏幕外的 holder 将被回收。此时回收并销毁播放器。
多播放器 + RecyclerView 原理图
三播放器让沉浸式短视频的体验大幅提高,主要解决了以下问题:
- 上下滑动过程中,进入屏幕的画面为视频的第一帧画面,并且不会有视觉上的顿挫。
- 正式播放前预创建播放器,并加载和解码,节省了播放视频之前的准备工作。(ps:这里还包括了下载的过程)。
- 由于提前加载和解码,进入屏幕时,触发 Surface 瞬间渲染,视觉上无感知,因此播放视频前不再需要封面图,避免了封面图和首帧不一致导致的闪屏问题。
预下载优化
前面讲到了多播放器实现翻页秒播能力,在体验上有了非常大的改善,但由于预创建的播放器在加载时,同时需要下载视频文件,导致这里的下一个播放器准备好视频的时间会增加到 1s 左右。如果用户在播放器加载解码完成前滑至该视频,则会出现明显的黑屏,带来非常差的体验。
由于预加载的时间过长,且无法预知用户是否会快速滑动。这里需要提前进行下载和快速滑动检测。
关于预下载,我们首先要知道播放器内部播放过程。这里的本地代理是视频缓存机制实现的,具体参照下一章节。
播放器内部流程
预下载策略
这里,我们为了节约请求网络数据的过程,在播放之前提前下载视频的首帧片段,采用如下策略:
- 文件大小:下载 1MB 视频文件的方式进行提前首帧下载。(ps:经测试 1MB 已包含了首帧,且文件相对较小)。
- 提前量:提前 5 个下载量(pageSize 为 10 的情况)。
- 并发情况:下载采用同步队列下载(避免异步下载导致带宽占用,正常播放的视频卡顿)。
- 快滑优化:快滑清除下载队列,避免快滑过程中频繁触发下载。
- 下载时机:loadMore 时将前 5 个推入队列;onPageSelected 时,跳过下一个开始起算 5 个视频推入队列(下一个视频由预加载的播放器自动下载,这里重复下载会导致视频花屏)。
快滑定义
当用户快速翻页时(onPageSelected 调用之前又滑了一下),onPageSelected 不会触发,onPageRelease 会触发多次。在 onPageRelease 中判断 release position 与 current postion 的差值如果 > 1 则表示用户至少快速翻页 1 次,此时定义为快滑状态,应当停止预下载和播放器预加载。
当 onPageSelected 回调时,说明用户没有继续翻页,此时取消快滑状态。开始执行预下载和恢复播放器预加载。
预下载流程图缓存优化
目前盒马使用的播放器为淘宝内部播放器。 播放器本身不存在文件缓存和预下载功能。在播放器重新创建后,即便是同一个视频也不会有文件缓存,需要重新下载。这里引入一个开源缓存框架 “com.danikula:videocache”。
方案原理
播放器播放的地址代理给本地的缓存服务,缓存服务负责转发数据流的同时进行文件保存如:
视频地址为:https://****.mp4
。
本地代理地址为:http://127.0.0.1:8888
(假设端口号分配为 8888)。
代理后的地址为: 本地代理地址 + 视频地址(URL 编码)。
即:http://127.0.0.1:8888/https%3A%2F%2F****.mp4
后续优化展望
关于多媒体的优化工作还有很多可以做。除了沉浸式秒播的场景外,我们还可以:
- 对播放器的一般性场景进行秒播优化,如首页列表的卡片视频。目前首页平均首帧画面需要 550ms,较长的有 1000s 以上,有明显的顿挫感。在沉浸式的方案基础上,我们可以提供一般性的预下载能力,从而减少播放器的下载渲染时长。
- 续播和内存优化。续播是另一个提升体验的方面,用户能够非常直观的感受连贯与否。
- 页面单播放器托管。大多场景下,一个页面只有一个播放器在播放,这就可以通过管理唯一的播放器实现页面播放器复用,从而优化内存和体验。
下一期我们将继续分享盒马 iOS / Android 端短视频续播的体验优化实践。
「视频云技术」你最值得关注的音视频技术公众号,每周推送来自阿里云一线的实践技术文章,在这里与音视频领域一流工程师交流切磋。公众号后台回复【技术】可加入阿里云视频云产品技术交流群,和业内大咖一起探讨音视频技术,获取更多行业最新信息。
短视频作为内容重要的承载方式,是吸引用户的重点,短视频的内容与体验直接关系到用户是否愿意长时停留。因此,体验的优化就显得尤为重要。上一篇我们分享了 iOS 短视频秒播优化,这篇我们来聊聊 Android 端的优化。
作者|少阳
审校|泰一
优化前的盒马沉浸式短视频播放页面,体感和流畅度上与主流短视频 App 有明显差距。主要问题有播放封面闪屏、出流速度慢两个问题。所以优化的目标是解决盒马沉浸式短视频现有短板,与主流 App 的沉浸式短视频体验对齐,如抖音、手淘等。具体指标有:
- 满足硬性指标:播放成功率、首帧时长、秒开率。
- 满足用户体感流畅度。(为反应用户观看短视频过程中的真实体验,盒马新增秒播体感指标:从用户划到视频,到视频首帧播放的时间。)
优化效果对比
首先我们来看一下优化前后与其他 App 的效果对比:
https://v.youku.com/v_show/id_XNTgwMzAwNDQ0OA==.html
环境
- 手机:Pixel 4
- OS:Android 10
- 播放器:淘宝播放器
问题分析
首页闪屏
盒马最初为了保证进入画面时不是空白页面而增加了封面图显示,在播放时隐藏。从体感指标可以看出,即便是优化前,体感播放时间很短,只有 200ms 左右(不包含滑动过程)。由于滑动过程中,到视频正式播放有约 600ms 左右时间显示封面,随后又迅速显示播放画面,此时用户仍有强烈的屏幕闪烁和顿挫感,体验极差。
解决思路:在滑动过程中就显示视频首帧画面,不再显示封面,则播放时不再产生顿挫感。这里的优化需要结合出流慢问题一起优化。
出流速度慢(播放体感慢)
服务端:服务端造成的出流速度慢,一般是文件大,网络链路差造成。可用 H.265 和 CDN 加速优化
客户端:客户端播放需要经历下载 -> 加载 + 解码 -> 渲染三个步骤,并且三个步骤为线性执行。所以在窗口播放画面前必然需要经过 1s 左右的准备工作。这里可以考虑提前执行下载 -> 加载 + 解码。
优化方案选型
在优化前期,我们考虑了三种优化方案。
方案一:双播放器 + 预下载
优点:占内存小,思路简单。
缺点:优化力度有限,无法同时兼顾上滑和下滑。
方案二:自定义三播放器管理 + 预下载
优点:同时兼顾上下翻页,体验接近抖音。
缺点:播放器管理与回收实现复杂,容易错乱;占用内存高。
方案三:三播放器(基于 RecyclerView 的缓存机制实现)+ 预下载
优点:同时兼顾上下翻页,体验接近抖音,缓存机制由 RecyclerView 托管。
缺点:占用内存高,频繁创建和销毁播放器。
最终因为性价比因素,选择了第三个方案。
方案三原理:翻页前
- current 播放器开始播放视频 1。
- pre,next 播放器分别加载视频数据 0 和 2。
- 同时视频数据 3-7 加入预下载队列。
方案三原理:翻页后
- 被 RecyclerView 回收的 holder 销毁播放器。
- RecyclerView onBind 中的 holder 创建新的 next 播放器。
- current 播放器开始播放视频 2。
- pre 播放器 seek 0 并暂停, next 播放器创建并加载视频 3 文件。
- 同时预下载清除未消费的队列,视频数据 4-8 加入预下载队列开始下载(此处已有缓存的视频不会被重复下载)。
具体优化方案
多播放器改造
为了解决体感上的顿挫和出流慢的问题,采用多播放器结合 RecyclerView 方案进行改造,步骤如下:
- 设置缓存数量:利用 RecyclerView 特性,配置 setItemViewCacheSize,确保内存中存在 3 个 holder(缓存的 1 个 holder,预创建 1 个 holder, 当前 holder)。
mRecyclerView.setItemViewCacheSize(1); // 设置缓存数量
- 重写 Adapter 的 onBindViewHolder, 用于创建播放器,并预加载解码视频内容,播放器控制解析到首帧时暂停。此时 onSurfaceCreated 尚未回调,画面未渲染至屏幕。
- 监听 onPageRelase 控制即将移除屏幕的播放器暂停,并 seekTo (0),方便滑回屏幕时立即播放。
- 监听 onPageSelected 控制即将进入屏幕的播放器开始播放。注意:由于在 onBindViewHolder 期间已解码完成,这里只需要进入屏幕 1px,就会立即触发 Surface 的绘制(只会执行一次),即进入窗口的内容会显示视频的首帧画面。
- 重写 Adapter 的 onViewRecycled, 由于当前 holder 即将移出屏幕,移出方向上屏幕外的 holder 将被回收。此时回收并销毁播放器。
多播放器 + RecyclerView 原理图
三播放器让沉浸式短视频的体验大幅提高,主要解决了以下问题:
- 上下滑动过程中,进入屏幕的画面为视频的第一帧画面,并且不会有视觉上的顿挫。
- 正式播放前预创建播放器,并加载和解码,节省了播放视频之前的准备工作。(ps:这里还包括了下载的过程)。
- 由于提前加载和解码,进入屏幕时,触发 Surface 瞬间渲染,视觉上无感知,因此播放视频前不再需要封面图,避免了封面图和首帧不一致导致的闪屏问题。
预下载优化
前面讲到了多播放器实现翻页秒播能力,在体验上有了非常大的改善,但由于预创建的播放器在加载时,同时需要下载视频文件,导致这里的下一个播放器准备好视频的时间会增加到 1s 左右。如果用户在播放器加载解码完成前滑至该视频,则会出现明显的黑屏,带来非常差的体验。
由于预加载的时间过长,且无法预知用户是否会快速滑动。这里需要提前进行下载和快速滑动检测。
关于预下载,我们首先要知道播放器内部播放过程。这里的本地代理是视频缓存机制实现的,具体参照下一章节。
播放器内部流程
预下载策略
这里,我们为了节约请求网络数据的过程,在播放之前提前下载视频的首帧片段,采用如下策略:
- 文件大小:下载 1MB 视频文件的方式进行提前首帧下载。(ps:经测试 1MB 已包含了首帧,且文件相对较小)。
- 提前量:提前 5 个下载量(pageSize 为 10 的情况)。
- 并发情况:下载采用同步队列下载(避免异步下载导致带宽占用,正常播放的视频卡顿)。
- 快滑优化:快滑清除下载队列,避免快滑过程中频繁触发下载。
- 下载时机:loadMore 时将前 5 个推入队列;onPageSelected 时,跳过下一个开始起算 5 个视频推入队列(下一个视频由预加载的播放器自动下载,这里重复下载会导致视频花屏)。
快滑定义
当用户快速翻页时(onPageSelected 调用之前又滑了一下),onPageSelected 不会触发,onPageRelease 会触发多次。在 onPageRelease 中判断 release position 与 current postion 的差值如果 > 1 则表示用户至少快速翻页 1 次,此时定义为快滑状态,应当停止预下载和播放器预加载。
当 onPageSelected 回调时,说明用户没有继续翻页,此时取消快滑状态。开始执行预下载和恢复播放器预加载。
预下载流程图缓存优化
目前盒马使用的播放器为淘宝内部播放器。 播放器本身不存在文件缓存和预下载功能。在播放器重新创建后,即便是同一个视频也不会有文件缓存,需要重新下载。这里引入一个开源缓存框架 “com.danikula:videocache”。
方案原理
播放器播放的地址代理给本地的缓存服务,缓存服务负责转发数据流的同时进行文件保存如:
视频地址为:https://****.mp4
。
本地代理地址为:http://127.0.0.1:8888
(假设端口号分配为 8888)。
代理后的地址为: 本地代理地址 + 视频地址(URL 编码)。
即:http://127.0.0.1:8888/https%3A%2F%2F****.mp4
后续优化展望
关于多媒体的优化工作还有很多可以做。除了沉浸式秒播的场景外,我们还可以:
- 对播放器的一般性场景进行秒播优化,如首页列表的卡片视频。目前首页平均首帧画面需要 550ms,较长的有 1000s 以上,有明显的顿挫感。在沉浸式的方案基础上,我们可以提供一般性的预下载能力,从而减少播放器的下载渲染时长。
- 续播和内存优化。续播是另一个提升体验的方面,用户能够非常直观的感受连贯与否。
- 页面单播放器托管。大多场景下,一个页面只有一个播放器在播放,这就可以通过管理唯一的播放器实现页面播放器复用,从而优化内存和体验。
下一期我们将继续分享盒马 iOS / Android 端短视频续播的体验优化实践。
收起阅读 »「视频云技术」你最值得关注的音视频技术公众号,每周推送来自阿里云一线的实践技术文章,在这里与音视频领域一流工程师交流切磋。公众号后台回复【技术】可加入阿里云视频云产品技术交流群,和业内大咖一起探讨音视频技术,获取更多行业最新信息。

APP二次开发,找技术人员,要求熟悉语言java
求个实在做事的,全职兼职都行。QQ1226251998
专业接项目那种外包的请勿扰了,玩不过你们。
求个实在做事的,全职兼职都行。QQ1226251998
专业接项目那种外包的请勿扰了,玩不过你们。

关于uni-ui easyinput组件在nvue下无法自动对焦的解决方案
nvue模式下,easyinput组件focus失效的解决方案
近期开发PDA的一个页面,使用nvue重构,选择了uni-ui的easyinput组件
需求是打开页面时要input框自带焦点,使用了文档中的focus,百试不灵
参考文档

官方对input文档说明focus属性在nvue情况下不管用
解决方案
mounted中原写法
// this.onInput = throttle(this.input, 500)
// this.$nextTick(() => {
// this.focused = this.focus
// })
解决后,自己在input添加ref选择器,主动调用focus()方法
if(this.focus){
this.$nextTick(() => {
this.$refs.input.focus()
})
}
在watch中的也做修改
focus(newVal) {
if(newVal){
this.$nextTick(() => {
this.$refs.input.focus()
})
}
else{
this.$nextTick(() => {
this.$refs.input.blur()
})
}
}
也可以根据自己的需求写一下环境判断
nvue模式下,easyinput组件focus失效的解决方案
近期开发PDA的一个页面,使用nvue重构,选择了uni-ui的easyinput组件
需求是打开页面时要input框自带焦点,使用了文档中的focus,百试不灵
参考文档
官方对input文档说明focus属性在nvue情况下不管用
解决方案
mounted中原写法
// this.onInput = throttle(this.input, 500)
// this.$nextTick(() => {
// this.focused = this.focus
// })
解决后,自己在input添加ref选择器,主动调用focus()方法
if(this.focus){
this.$nextTick(() => {
this.$refs.input.focus()
})
}
在watch中的也做修改
focus(newVal) {
if(newVal){
this.$nextTick(() => {
this.$refs.input.focus()
})
}
else{
this.$nextTick(() => {
this.$refs.input.blur()
})
}
}
也可以根据自己的需求写一下环境判断
收起阅读 »

测试biaoti
Started by user admin
Running in Durability level: MAX_SURVIVABILITY
[Pipeline] Start of Pipeline
[Pipeline] node
Running on node2 in /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo
[Pipeline] {
[Pipeline] withEnv
[Pipeline] {
[Pipeline] stage
[Pipeline] { (DownloadCode)
[Pipeline] checkout
using credential test
Fetching changes from the remote Git repository
Cleaning workspace
/usr/bin/git rev-parse --is-inside-work-tree # timeout=10
/usr/bin/git config remote.origin.url ssh://git@code.paic.com.cn:8006/git/mizar_cloud.git # timeout=10
/usr/bin/git rev-parse --verify HEAD # timeout=10
Resetting working tree
/usr/bin/git reset --hard # timeout=10
/usr/bin/git clean -fdx # timeout=10
Fetching upstream changes from ssh://git@code.paic.com.cn:8006/git/mizar_cloud.git
/usr/bin/git --version # timeout=10
using GIT_ASKPASS to set credentials
/usr/bin/git fetch --tags --progress ssh://git@code.paic.com.cn:8006/git/mizar_cloud.git +refs/heads/:refs/remotes/origin/ # timeout=10
Checking out Revision 7e358cb5e98a8037abf767b12b9a56516f336d17 (origin/master)
Commit message: "FLS-CRM#11030 数据源接入"
/usr/bin/git rev-parse origin/master^{commit} # timeout=10
/usr/bin/git config core.sparsecheckout # timeout=10
/usr/bin/git checkout -f 7e358cb5e98a8037abf767b12b9a56516f336d17 # timeout=10
/usr/bin/git rev-list --no-walk 7e358cb5e98a8037abf767b12b9a56516f336d17 # timeout=10
[Pipeline] script
[Pipeline] {
[Pipeline] sh
- cd code
- git rev-parse HEAD
- cut -c 1-8
[Pipeline] sh- echo 7e358cb5
7e358cb5
[Pipeline] }
[Pipeline] // script
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (MavenBuild)
[Pipeline] sh- cd code
- mvn clean package -DskipTests=true
[INFO] Scanning for projects...
[WARNING]
[WARNING] Some problems were encountered while building the effective model for com.pingan.mizar.cloud:mizar-cloud-demo:jar:1.0-SNAPSHOT
[WARNING] 'build.plugins.plugin.version' for org.springframework.boot:spring-boot-maven-plugin is missing. @ line 61, column 21
[WARNING]
[WARNING] Some problems were encountered while building the effective model for com.pingan.mizar.cloud:mizar-cloud-support-redis:jar:1.0-SNAPSHOT
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-surefire-plugin is missing. @ line 47, column 21
[WARNING]
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING]
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING]
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO]
[INFO] pafa-cloud-dependencies [pom]
[INFO] mizar-cloud-parent [pom]
[INFO] mizar-cloud-core [jar]
[INFO] mizar-cloud-support-config [jar]
[INFO] mizar-cloud-support-redis [jar]
[INFO] mizar-cloud-support-db [jar]
[INFO] mizar-cloud-log [jar]
[INFO] mizar-cloud-demo [jar]
[INFO] mizar-cloud-messages [jar]
[INFO]
[INFO] ----------< com.pingan.mizar.cloud:mizar-cloud-dependencies >-----------
[INFO] Building pafa-cloud-dependencies 1.10.0.RELEASE [1/9]
[INFO] --------------------------------[ pom ]---------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ mizar-cloud-dependencies ---
[INFO]
[INFO] -----------< com.pingan.mizar.cloud:com.pingan.mizar.cloud >------------
[INFO] Building mizar-cloud-parent 1.0-SNAPSHOT [2/9]
[INFO] --------------------------------[ pom ]---------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ com.pingan.mizar.cloud ---
[INFO]
[INFO] --------------< com.pingan.mizar.cloud:mizar-cloud-core >---------------
[INFO] Building mizar-cloud-core 1.0-SNAPSHOT [3/9]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ mizar-cloud-core ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ mizar-cloud-core ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ mizar-cloud-core ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 26 source files to /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-core/target/classes
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ mizar-cloud-core ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-core/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ mizar-cloud-core ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ mizar-cloud-core ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ mizar-cloud-core ---
[INFO] Building jar: /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-core/target/mizar-cloud-core.jar
[INFO]
[INFO] ---------< com.pingan.mizar.cloud:mizar-cloud-support-config >----------
[INFO] Building mizar-cloud-support-config 1.0-SNAPSHOT [4/9]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ mizar-cloud-support-config ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ mizar-cloud-support-config ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ mizar-cloud-support-config ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ mizar-cloud-support-config ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-support-config/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ mizar-cloud-support-config ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ mizar-cloud-support-config ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ mizar-cloud-support-config ---
[INFO] Building jar: /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-support-config/target/mizar-cloud-demo.jar
[INFO]
[INFO] ----------< com.pingan.mizar.cloud:mizar-cloud-support-redis >----------
[INFO] Building mizar-cloud-support-redis 1.0-SNAPSHOT [5/9]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ mizar-cloud-support-redis ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ mizar-cloud-support-redis ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ mizar-cloud-support-redis ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 9 source files to /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-support-redis/target/classes
[INFO] /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-support-redis/src/main/java/com/pingan/mizar/cloud/redis/listener/ListenerRegister.java: /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-support-redis/src/main/java/com/pingan/mizar/cloud/redis/listener/ListenerRegister.java uses unchecked or unsafe operations.
[INFO] /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-support-redis/src/main/java/com/pingan/mizar/cloud/redis/listener/ListenerRegister.java: Recompile with -Xlint:unchecked for details.
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ mizar-cloud-support-redis ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-support-redis/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ mizar-cloud-support-redis ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ mizar-cloud-support-redis ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ mizar-cloud-support-redis ---
[INFO] Building jar: /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-support-redis/target/mizar-cloud-demo.jar
[INFO]
[INFO] -----------< com.pingan.mizar.cloud:mizar-cloud-support-db >------------
[INFO] Building mizar-cloud-support-db 1.0-SNAPSHOT [6/9]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ mizar-cloud-support-db ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ mizar-cloud-support-db ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ mizar-cloud-support-db ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 11 source files to /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-support-db/target/classes
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ mizar-cloud-support-db ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-support-db/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ mizar-cloud-support-db ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ mizar-cloud-support-db ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ mizar-cloud-support-db ---
[INFO] Building jar: /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-support-db/target/mizar-cloud-demo.jar
[INFO]
[INFO] ---------------< com.pingan.mizar.cloud:mizar-cloud-log >---------------
[INFO] Building mizar-cloud-log 1.0-SNAPSHOT [7/9]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ mizar-cloud-log ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ mizar-cloud-log ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-log/src/main/java
[INFO] Copying 1 resource
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ mizar-cloud-log ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ mizar-cloud-log ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-log/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ mizar-cloud-log ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ mizar-cloud-log ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ mizar-cloud-log ---
[INFO] Building jar: /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-log/target/mizar-cloud-demo.jar
[INFO]
[INFO] --------------< com.pingan.mizar.cloud:mizar-cloud-demo >---------------
[INFO] Building mizar-cloud-demo 1.0-SNAPSHOT [8/9]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ mizar-cloud-demo ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ mizar-cloud-demo ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ mizar-cloud-demo ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 8 source files to /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-demo/target/classes
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ mizar-cloud-demo ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-demo/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ mizar-cloud-demo ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ mizar-cloud-demo ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ mizar-cloud-demo ---
[INFO] Building jar: /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-demo/target/mizar-cloud-demo.jar
[INFO]
[INFO] --- spring-boot-maven-plugin:2.3.11.RELEASE:repackage (default) @ mizar-cloud-demo ---
[INFO] Replacing main artifact with repackaged archive
[INFO]
[INFO] ------------< com.pingan.mizar.cloud:mizar-cloud-messages >-------------
[INFO] Building mizar-cloud-messages 1.0-SNAPSHOT [9/9]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ mizar-cloud-messages ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ mizar-cloud-messages ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-messages/src/main/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ mizar-cloud-messages ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ mizar-cloud-messages ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-messages/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ mizar-cloud-messages ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ mizar-cloud-messages ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ mizar-cloud-messages ---
[WARNING] JAR will be empty - no content was marked for inclusion!
[INFO] Building jar: /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-messages/target/mizar-cloud-demo.jar
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] pafa-cloud-dependencies 1.10.0.RELEASE ............. SUCCESS [ 0.113 s]
[INFO] mizar-cloud-parent 1.0-SNAPSHOT .................... SUCCESS [ 0.004 s]
[INFO] mizar-cloud-core 1.0-SNAPSHOT ...................... SUCCESS [ 2.916 s]
[INFO] mizar-cloud-support-config 1.0-SNAPSHOT ............ SUCCESS [ 0.134 s]
[INFO] mizar-cloud-support-redis 1.0-SNAPSHOT ............. SUCCESS [ 1.030 s]
[INFO] mizar-cloud-support-db 1.0-SNAPSHOT ................ SUCCESS [ 0.955 s]
[INFO] mizar-cloud-log 1.0-SNAPSHOT ....................... SUCCESS [ 0.052 s]
[INFO] mizar-cloud-demo 1.0-SNAPSHOT ...................... SUCCESS [ 1.596 s]
[INFO] mizar-cloud-messages 1.0-SNAPSHOT .................. SUCCESS [ 0.052 s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 7.390 s
[INFO] Finished at: 2021-06-21T18:02:49+08:00
[INFO] ------------------------------------------------------------------------
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Environment Init)
[Pipeline] sh- echo $'\345\210\235\345\247\213\345\214\226\347\216\257\345\242\203'
初始化环境
[Pipeline] sh- /bin/cp -rf /data/pipelinebuild/crm-mizar-demo/k8s_dev.yaml ./17.yaml
[Pipeline] sh- /bin/cp -rf /data/pipelinebuild/crm-mizar-demo/Dockerfile_dev ./Dockerfile
[Pipeline] script
[Pipeline] {
[Pipeline] echo
deploy dev1
[Pipeline] echo
appdenv is STG
[Pipeline] echo
appdenvcluster is default
[Pipeline] echo
images is hub.yun.paic.com.cn/crmstg/crm-mizar-demo:7e358cb5
[Pipeline] sh- sed -i s#PACKAGE_PATH#mizar-cloud-demo/target/mizar-cloud-demo.jar# Dockerfile
[Pipeline] sh- sed -i s/APP_PORT/30113/ 17.yaml
[Pipeline] sh- sed -i s/PROJECT_NS/FLS-IVS-SERVICE-SPRINGBOOT-APP-GATEWAY3/ 17.yaml
[Pipeline] sh- sed -i s/NAMESPACESTG/fls-crm/ 17.yaml
[Pipeline] sh- sed -i s/TemplateProject/crm-mizar-demo-dev1/ 17.yaml
[Pipeline] sh- sed -i s/NodeSelector/cx/ 17.yaml
[Pipeline] sh- sed -i s#ProjectImage#hub.yun.paic.com.cn/crmstg/crm-mizar-demo:7e358cb5# 17.yaml
[Pipeline] sh- sed -i s#Logdir#/data/logs/dev1# 17.yaml
[Pipeline] sh- sed -i s/REP/1/ 17.yaml
[Pipeline] sh- sed -i s/ENV/dev1/ 17.yaml
[Pipeline] sh- sed -i s/appdenv/STG/ 17.yaml
[Pipeline] sh- sed -i s/appcenv/default/ 17.yaml
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] }
[Pipeline] // script
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Build Image)
[Pipeline] script
[Pipeline] {
[Pipeline] echo
build image
[Pipeline] sh- docker build -t hub.yun.paic.com.cn/crmstg/crm-mizar-demo:7e358cb5 .
Sending build context to Docker daemon 69.64MB
Step 1/6 : FROM hub.yun.paic.com.cn/wzlstg/pazl-esign-server:base
---> ffaa932acd68
Step 2/6 : MAINTAINER by mahaojun
---> Using cache
---> 610ede0ad03d
Step 3/6 : RUN cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
---> Using cache
---> b5a4b4e9d032
Step 4/6 : COPY code/mizar-cloud-demo/target/mizar-cloud-demo.jar /wls/wls81/app/app.jar
---> a76070d0164c
Step 5/6 : WORKDIR /wls/wls81
---> Running in 1dfc4dc01947
Removing intermediate container 1dfc4dc01947
---> d80ced827b1b
Step 6/6 : CMD ["/run.sh"]
---> Running in f5cb05b6ca73
Removing intermediate container f5cb05b6ca73
---> cccb06c0777f
Successfully built cccb06c0777f
Successfully tagged hub.yun.paic.com.cn/crmstg/crm-mizar-demo:7e358cb5
[Pipeline] }
[Pipeline] // script
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Push Image)
[Pipeline] script
[Pipeline] {
[Pipeline] echo
push image
[Pipeline] sh
- docker push hub.yun.paic.com.cn/crmstg/crm-mizar-demo:7e358cb5
The push refers to repository [hub.yun.paic.com.cn/crmstg/crm-mizar-demo]
7ccd071ffd4c: Preparing
551c98fd9c1b: Preparing
2f82a0c64dd1: Preparing
7ec1e9cc8c16: Preparing
c2f0be5dfcec: Preparing
ec0b9136b9ff: Preparing
d608045dfcca: Preparing
2ccf967b3f2a: Preparing
a1ce7c1975a6: Preparing
ec3aa562dc88: Preparing
479c111db1ea: Preparing
5f70bf18a086: Preparing
5f70bf18a086: Preparing
5f70bf18a086: Preparing
5f70bf18a086: Preparing
dc44cf6f74b6: Preparing
5f70bf18a086: Preparing
ec3aa562dc88: Waiting
d608045dfcca: Waiting
dc44cf6f74b6: Waiting
479c111db1ea: Waiting
5f70bf18a086: Waiting
2ccf967b3f2a: Waiting
a1ce7c1975a6: Waiting
c2f0be5dfcec: Mounted from wzlstg/pazl-sf-gw
7ec1e9cc8c16: Mounted from wzlstg/pazl-sf-gw
551c98fd9c1b: Mounted from mdpstg/fls-mdp-wechat-admin
2f82a0c64dd1: Mounted from wzlstg/pazl-sf-gw
2ccf967b3f2a: Layer already exists
d608045dfcca: Layer already exists
a1ce7c1975a6: Layer already exists
ec3aa562dc88: Layer already exists
479c111db1ea: Layer already exists
5f70bf18a086: Layer already exists
dc44cf6f74b6: Layer already exists
ec0b9136b9ff: Mounted from wzlstg/pazl-sf-gw
7ccd071ffd4c: Pushed
7e358cb5: digest: sha256:214afae6d18434f503c96a3925fc4fb28cf892dd7c7c9b67e36abb6ab9fa042f size: 3866
[Pipeline] }
[Pipeline] // script
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Deploy)
[Pipeline] script
[Pipeline] {
[Pipeline] sh - echo Deploy
Deploy
[Pipeline] sh - kubectl config use-context kubernetes-admin@kubernetes
Switched to context "kubernetes-admin@kubernetes".
[Pipeline] sh - kubectl apply -f 17.yaml --record
deployment.extensions/crm-mizar-demo-dev1 configured
service/crm-mizar-demo-dev1-service configured
[Pipeline] }
[Pipeline] // script
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Pod Check)
[Pipeline] sleep
Sleeping for 30 sec
[Pipeline] script
[Pipeline] {
[Pipeline] echo
检查部署pod状态
[Pipeline] sh -
/data/pipelinebuild/devops-script/pod_status.sh
crm-mizar-demo-dev1
fls-crm
1
FLS-CRM-DEV_crm-mizar-demo
sleep 10
Running
Running
Running
sleep 90
the application successfully deployedcrm-mizar-demo-dev1-79bc9ff88-22cqt 1/1 Running 0 94s 30.123.18.252 30.123.18.252 <none> <none>
启动日志如下
2021-06-21 18:04:59 INFO Loading TraceMetadataProviders
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.activemq.client.ActiveMQClientTraceMetadataProvider name:com.navercorp.pinpoint.plugin.activemq.client.ActiveMQClientTraceMetadataProvider@567d299b
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.arcus.ArcusTypeProvider name:com.navercorp.pinpoint.plugin.arcus.ArcusTypeProvider@574caa3f
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.asynchronous.AsynchronousTraceMetadataProvider name:com.navercorp.pinpoint.plugin.asynchronous.AsynchronousTraceMetadataProvider@6c629d6e
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.cassandra.CassandraTypeProvider name:com.navercorp.pinpoint.plugin.cassandra.CassandraTypeProvider@27abe2cd
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.commons.dbcp.CommonsDbcpMetadataProvider name:com.navercorp.pinpoint.plugin.commons.dbcp.CommonsDbcpMetadataProvider@51016012
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.commons.dbcp2.CommonsDbcp2MetadataProvider name:com.navercorp.pinpoint.plugin.commons.dbcp2.CommonsDbcp2MetadataProvider@1517365b
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.jdbc.cubrid.CubridTypeProvider name:com.navercorp.pinpoint.plugin.jdbc.cubrid.CubridTypeProvider@60215eee
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.cxf.CxfPluginTraceMetadataProvider name:com.navercorp.pinpoint.plugin.cxf.CxfPluginTraceMetadataProvider@61baa894
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.dubbo.DubboTraceMetadataProvider name:com.navercorp.pinpoint.plugin.dubbo.DubboTraceMetadataProvider@490d6c15
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.google.httpclient.HttpClientTypeProvider name:com.navercorp.pinpoint.plugin.google.httpclient.HttpClientTypeProvider@5479e3f
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.gson.GsonMetadataProvider name:com.navercorp.pinpoint.plugin.gson.GsonMetadataProvider@7bfcd12c
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.hikaricp.HikariCpMetadataProvider name:com.navercorp.pinpoint.plugin.hikaricp.HikariCpMetadataProvider@5b1d2887
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.httpclient3.HttpClient3TypeProvider name:com.navercorp.pinpoint.plugin.httpclient3.HttpClient3TypeProvider@18e8568
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.httpclient4.HttpClient4TypeProvider name:com.navercorp.pinpoint.plugin.httpclient4.HttpClient4TypeProvider@270421f5
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.hystrix.HystrixTraceMetadataProvider name:com.navercorp.pinpoint.plugin.hystrix.HystrixTraceMetadataProvider@18ef96
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.ibatis.IBatisMetadataProvider name:com.navercorp.pinpoint.plugin.ibatis.IBatisMetadataProvider@6aceb1a5
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.jackson.JacksonTypeProvider name:com.navercorp.pinpoint.plugin.jackson.JacksonTypeProvider@12bc6874
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.jboss.JbossTypeProvider name:com.navercorp.pinpoint.plugin.jboss.JbossTypeProvider@1ef7fe8e
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.jdk.http.JdkHttpTypeProvider name:com.navercorp.pinpoint.plugin.jdk.http.JdkHttpTypeProvider@5d3411d
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.jetty.JettyTypeProvider name:com.navercorp.pinpoint.plugin.jetty.JettyTypeProvider@6979e8cb
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.json_lib.JsonLibTypeProvider name:com.navercorp.pinpoint.plugin.json_lib.JsonLibTypeProvider@2be94b0f
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.jsp.JspTypeProvider name:com.navercorp.pinpoint.plugin.jsp.JspTypeProvider@50675690
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.jdbc.jtds.JtdsTypeProvider name:com.navercorp.pinpoint.plugin.jdbc.jtds.JtdsTypeProvider@47d384ee
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.kafka.KafkaMetadataProvider name:com.navercorp.pinpoint.plugin.kafka.KafkaMetadataProvider@3930015a
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.jdbc.mariadb.MariaDBTypeProvider name:com.navercorp.pinpoint.plugin.jdbc.mariadb.MariaDBTypeProvider@224aed64
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.mybatis.MyBatisMetadataProvider name:com.navercorp.pinpoint.plugin.mybatis.MyBatisMetadataProvider@2ac1fdc4
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.jdbc.mysql.MySqlTypeProvider name:com.navercorp.pinpoint.plugin.jdbc.mysql.MySqlTypeProvider@50cbc42f
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.netty.NettyMetadataProvider name:com.navercorp.pinpoint.plugin.netty.NettyMetadataProvider@13b6d03
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.ning.asynchttpclient.NingAsyncHttpClientMetadataProvider name:com.navercorp.pinpoint.plugin.ning.asynchttpclient.NingAsyncHttpClientMetadataProvider@64c64813
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.okhttp.OkHttpTypeProvider name:com.navercorp.pinpoint.plugin.okhttp.OkHttpTypeProvider@21a06946
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.jdbc.oracle.OracleTypeProvider name:com.navercorp.pinpoint.plugin.jdbc.oracle.OracleTypeProvider@25618e91
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.jdbc.postgresql.PostgreSqlTypeProvider name:com.navercorp.pinpoint.plugin.jdbc.postgresql.PostgreSqlTypeProvider@2cfb4a64
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.redis.RedisTypeProvider name:com.navercorp.pinpoint.plugin.redis.RedisTypeProvider@2fc14f68
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.resin.ResinTraceMetadataProvider name:com.navercorp.pinpoint.plugin.resin.ResinTraceMetadataProvider@61443d8f
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.resttemplate.RestTemplateMetadataProvider name:com.navercorp.pinpoint.plugin.resttemplate.RestTemplateMetadataProvider@233c0b17
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.spring.boot.SpringBootTraceMetadataProvider name:com.navercorp.pinpoint.plugin.spring.boot.SpringBootTraceMetadataProvider@33a10788
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.spring.beans.SpringBeansTraceMetadataProvider name:com.navercorp.pinpoint.plugin.spring.beans.SpringBeansTraceMetadataProvider@47fd17e3
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.spring.web.SpringWebMvcTraceMetadataProvider name:com.navercorp.pinpoint.plugin.spring.web.SpringWebMvcTraceMetadataProvider@17d99928
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.thrift.ThriftTypeProvider name:com.navercorp.pinpoint.plugin.thrift.ThriftTypeProvider@6fffcba5
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.tomcat.TomcatTypeProvider name:com.navercorp.pinpoint.plugin.tomcat.TomcatTypeProvider@2b80d80f
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.user.UserTypeProvider name:com.navercorp.pinpoint.plugin.user.UserTypeProvider@7907ec20
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.vertx.VertxTypeProvider name:com.navercorp.pinpoint.plugin.vertx.VertxTypeProvider@546a03af
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.weblogic.WeblogicTypeProvider name:com.navercorp.pinpoint.plugin.weblogic.WeblogicTypeProvider@6ea6d14e
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.websphere.WebsphereTypeProvider name:com.navercorp.pinpoint.plugin.websphere.WebsphereTypeProvider@725bef66
2021-06-21 18:04:59 INFO Finished loading ServiceType:
2021-06-21 18:04:59 INFO TOMCAT(1010) from com.navercorp.pinpoint.plugin.tomcat.TomcatTypeProvider
2021-06-21 18:04:59 INFO TOMCAT_METHOD(1011) from com.navercorp.pinpoint.plugin.tomcat.TomcatTypeProvider
2021-06-21 18:04:59 INFO JETTY(1030) from com.navercorp.pinpoint.plugin.jetty.JettyTypeProvider
2021-06-21 18:04:59 INFO JETTY_METHOD(1031) from com.navercorp.pinpoint.plugin.jetty.JettyTypeProvider
2021-06-21 18:04:59 INFO JBOSS(1040) from com.navercorp.pinpoint.plugin.jboss.JbossTypeProvider
2021-06-21 18:04:59 INFO JBOSS_METHOD(1041) from com.navercorp.pinpoint.plugin.jboss.JbossTypeProvider
2021-06-21 18:04:59 INFO VERTX(1050) from com.navercorp.pinpoint.plugin.vertx.VertxTypeProvider
2021-06-21 18:04:59 INFO VERTX_INTERNAL(1051) from com.navercorp.pinpoint.plugin.vertx.VertxTypeProvider
2021-06-21 18:04:59 INFO VERTX_HTTP_SERVER(1052) from com.navercorp.pinpoint.plugin.vertx.VertxTypeProvider
2021-06-21 18:04:59 INFO VERTX_HTTP_SERVER_INTERNAL(1053) from com.navercorp.pinpoint.plugin.vertx.VertxTypeProvider
2021-06-21 18:04:59 INFO WEBSPHERE(1060) from com.navercorp.pinpoint.plugin.websphere.WebsphereTypeProvider
2021-06-21 18:04:59 INFO WEBSPHERE_METHOD(1061) from com.navercorp.pinpoint.plugin.websphere.WebsphereTypeProvider
2021-06-21 18:04:59 INFO THRIFT_SERVER(1100) from com.navercorp.pinpoint.plugin.thrift.ThriftTypeProvider
2021-06-21 18:04:59 INFO THRIFT_SERVER_INTERNAL(1101) from com.navercorp.pinpoint.plugin.thrift.ThriftTypeProvider
2021-06-21 18:04:59 INFO DUBBO_PROVIDER(1110) from com.navercorp.pinpoint.plugin.dubbo.DubboTraceMetadataProvider
2021-06-21 18:04:59 INFO RESIN(1200) from com.navercorp.pinpoint.plugin.resin.ResinTraceMetadataProvider
2021-06-21 18:04:59 INFO RESIN_METHOD(1201) from com.navercorp.pinpoint.plugin.resin.ResinTraceMetadataProvider
2021-06-21 18:04:59 INFO SPRING_BOOT(1210) from com.navercorp.pinpoint.plugin.spring.boot.SpringBootTraceMetadataProvider
2021-06-21 18:04:59 INFO SAMPLE_SERVER(1900) from com.navercorp.pinpoint.plugin.asynchronous.AsynchronousTraceMetadataProvider
2021-06-21 18:04:59 INFO WEBLOGIC(1989) from com.navercorp.pinpoint.plugin.weblogic.WeblogicTypeProvider
2021-06-21 18:04:59 INFO WEBLOGIC_METHOD(1992) from com.navercorp.pinpoint.plugin.weblogic.WeblogicTypeProvider
2021-06-21 18:04:59 INFO MYSQL(2100) from com.navercorp.pinpoint.plugin.jdbc.mysql.MySqlTypeProvider
2021-06-21 18:04:59 INFO MYSQL_EXECUTE_QUERY(2101) from com.navercorp.pinpoint.plugin.jdbc.mysql.MySqlTypeProvider
2021-06-21 18:04:59 INFO MARIADB(2150) from com.navercorp.pinpoint.plugin.jdbc.mariadb.MariaDBTypeProvider
2021-06-21 18:04:59 INFO MARIADB_EXECUTE_QUERY(2151) from com.navercorp.pinpoint.plugin.jdbc.mariadb.MariaDBTypeProvider
2021-06-21 18:04:59 INFO MSSQL(2200) from com.navercorp.pinpoint.plugin.jdbc.jtds.JtdsTypeProvider
2021-06-21 18:04:59 INFO MSSQL_EXECUTE_QUERY(2201) from com.navercorp.pinpoint.plugin.jdbc.jtds.JtdsTypeProvider
2021-06-21 18:04:59 INFO ORACLE(2300) from com.navercorp.pinpoint.plugin.jdbc.oracle.OracleTypeProvider
2021-06-21 18:04:59 INFO ORACLE_EXECUTE_QUERY(2301) from com.navercorp.pinpoint.plugin.jdbc.oracle.OracleTypeProvider
2021-06-21 18:04:59 INFO CUBRID(2400) from com.navercorp.pinpoint.plugin.jdbc.cubrid.CubridTypeProvider
2021-06-21 18:04:59 INFO CUBRID_EXECUTE_QUERY(2401) from com.navercorp.pinpoint.plugin.jdbc.cubrid.CubridTypeProvider
2021-06-21 18:04:59 INFO POSTGRESQL(2500) from com.navercorp.pinpoint.plugin.jdbc.postgresql.PostgreSqlTypeProvider
2021-06-21 18:04:59 INFO POSTGRESQL_EXECUTE_QUERY(2501) from com.navercorp.pinpoint.plugin.jdbc.postgresql.PostgreSqlTypeProvider
2021-06-21 18:04:59 INFO CASSANDRA(2600) from com.navercorp.pinpoint.plugin.cassandra.CassandraTypeProvider
2021-06-21 18:04:59 INFO CASSANDRA_EXECUTE_QUERY(2601) from com.navercorp.pinpoint.plugin.cassandra.CassandraTypeProvider
2021-06-21 18:04:59 INFO JSP(5005) from com.navercorp.pinpoint.plugin.jsp.JspTypeProvider
2021-06-21 18:04:59 INFO GSON(5010) from com.navercorp.pinpoint.plugin.gson.GsonMetadataProvider
2021-06-21 18:04:59 INFO JACKSON(5011) from com.navercorp.pinpoint.plugin.jackson.JacksonTypeProvider
2021-06-21 18:04:59 INFO JSON-LIB(5012) from com.navercorp.pinpoint.plugin.json_lib.JsonLibTypeProvider
2021-06-21 18:04:59 INFO SPRING_MVC(5051) from com.navercorp.pinpoint.plugin.spring.web.SpringWebMvcTraceMetadataProvider
2021-06-21 18:04:59 INFO SPRING_BEAN(5071) from com.navercorp.pinpoint.plugin.spring.beans.SpringBeansTraceMetadataProvider
2021-06-21 18:04:59 INFO IBATIS(5500) from com.navercorp.pinpoint.plugin.ibatis.IBatisMetadataProvider
2021-06-21 18:04:59 INFO IBATIS_SPRING(5501) from com.navercorp.pinpoint.plugin.ibatis.IBatisMetadataProvider
2021-06-21 18:04:59 INFO MYBATIS(5510) from com.navercorp.pinpoint.plugin.mybatis.MyBatisMetadataProvider
2021-06-21 18:04:59 INFO DBCP(6050) from com.navercorp.pinpoint.plugin.commons.dbcp.CommonsDbcpMetadataProvider
2021-06-21 18:04:59 INFO DBCP2(6052) from com.navercorp.pinpoint.plugin.commons.dbcp2.CommonsDbcp2MetadataProvider
2021-06-21 18:04:59 INFO HIKARICP(6060) from com.navercorp.pinpoint.plugin.hikaricp.HikariCpMetadataProvider
2021-06-21 18:04:59 INFO PluginExample(7500) from com.navercorp.pinpoint.plugin.asynchronous.AsynchronousTraceMetadataProvider
2021-06-21 18:04:59 INFO MEMCACHED(8050) from com.navercorp.pinpoint.plugin.arcus.ArcusTypeProvider
2021-06-21 18:04:59 INFO MEMCACHED_FUTURE_GET(8051) from com.navercorp.pinpoint.plugin.arcus.ArcusTypeProvider
2021-06-21 18:04:59 INFO ARCUS(8100) from com.navercorp.pinpoint.plugin.arcus.ArcusTypeProvider
2021-06-21 18:04:59 INFO ARCUS_FUTURE_GET(8101) from com.navercorp.pinpoint.plugin.arcus.ArcusTypeProvider
2021-06-21 18:04:59 INFO ARCUS_EHCACHE_FUTURE_GET(8102) from com.navercorp.pinpoint.plugin.arcus.ArcusTypeProvider
2021-06-21 18:04:59 INFO REDIS(8200) from com.navercorp.pinpoint.plugin.redis.RedisTypeProvider
2021-06-21 18:04:59 INFO ACTIVEMQ_CLIENT(8310) from com.navercorp.pinpoint.plugin.activemq.client.ActiveMQClientTraceMetadataProvider
2021-06-21 18:04:59 INFO ACTIVEMQ_CLIENT_INTERNAL(8311) from com.navercorp.pinpoint.plugin.activemq.client.ActiveMQClientTraceMetadataProvider
2021-06-21 18:04:59 INFO KAFKA_CLIENT(8660) from com.navercorp.pinpoint.plugin.kafka.KafkaMetadataProvider
2021-06-21 18:04:59 INFO KAFKA_CLIENT_INTERNAL(8661) from com.navercorp.pinpoint.plugin.kafka.KafkaMetadataProvider
2021-06-21 18:04:59 INFO HTTP_CLIENT_3(9050) from com.navercorp.pinpoint.plugin.httpclient3.HttpClient3TypeProvider
2021-06-21 18:04:59 INFO HTTP_CLIENT_3_INTERNAL(9051) from com.navercorp.pinpoint.plugin.httpclient3.HttpClient3TypeProvider
2021-06-21 18:04:59 INFO HTTP_CLIENT_4(9052) from com.navercorp.pinpoint.plugin.httpclient4.HttpClient4TypeProvider
2021-06-21 18:04:59 INFO HTTP_CLIENT_4_INTERNAL(9053) from com.navercorp.pinpoint.plugin.httpclient4.HttpClient4TypeProvider
2021-06-21 18:04:59 INFO GOOGLE_HTTP_CLIENT_INTERNAL(9054) from com.navercorp.pinpoint.plugin.google.httpclient.HttpClientTypeProvider
2021-06-21 18:04:59 INFO JDK_HTTPURLCONNECTOR(9055) from com.navercorp.pinpoint.plugin.jdk.http.JdkHttpTypeProvider
2021-06-21 18:04:59 INFO ASYNC_HTTP_CLIENT(9056) from com.navercorp.pinpoint.plugin.ning.asynchttpclient.NingAsyncHttpClientMetadataProvider
2021-06-21 18:04:59 INFO ASYNC_HTTP_CLIENT_INTERNAL(9057) from com.navercorp.pinpoint.plugin.ning.asynchttpclient.NingAsyncHttpClientMetadataProvider
2021-06-21 18:04:59 INFO OK_HTTP_CLIENT(9058) from com.navercorp.pinpoint.plugin.okhttp.OkHttpTypeProvider
2021-06-21 18:04:59 INFO OK_HTTP_CLIENT_INTERNAL(9059) from com.navercorp.pinpoint.plugin.okhttp.OkHttpTypeProvider
2021-06-21 18:04:59 INFO CXF_CLIENT(9080) from com.navercorp.pinpoint.plugin.cxf.CxfPluginTraceMetadataProvider
2021-06-21 18:04:59 INFO THRIFT_CLIENT(9100) from com.navercorp.pinpoint.plugin.thrift.ThriftTypeProvider
2021-06-21 18:04:59 INFO THRIFT_CLIENT_INTERNAL(9101) from com.navercorp.pinpoint.plugin.thrift.ThriftTypeProvider
2021-06-21 18:04:59 INFO DUBBO_CONSUMER(9110) from com.navercorp.pinpoint.plugin.dubbo.DubboTraceMetadataProvider
2021-06-21 18:04:59 INFO HYSTRIX_COMMAND(9120) from com.navercorp.pinpoint.plugin.hystrix.HystrixTraceMetadataProvider
2021-06-21 18:04:59 INFO HYSTRIX_COMMAND_INTERNAL(9121) from com.navercorp.pinpoint.plugin.hystrix.HystrixTraceMetadataProvider
2021-06-21 18:04:59 INFO VERTX_HTTP_CLIENT(9130) from com.navercorp.pinpoint.plugin.vertx.VertxTypeProvider
2021-06-21 18:04:59 INFO VERTX_HTTP_CLIENT_INTERNAL(9131) from com.navercorp.pinpoint.plugin.vertx.VertxTypeProvider
2021-06-21 18:04:59 INFO REST_TEMPLATE(9140) from com.navercorp.pinpoint.plugin.resttemplate.RestTemplateMetadataProvider
2021-06-21 18:04:59 INFO NETTY(9150) from com.navercorp.pinpoint.plugin.netty.NettyMetadataProvider
2021-06-21 18:04:59 INFO NETTY_INTERNAL(9151) from com.navercorp.pinpoint.plugin.netty.NettyMetadataProvider
2021-06-21 18:04:59 INFO NETTY_HTTP(9152) from com.navercorp.pinpoint.plugin.netty.NettyMetadataProvider
2021-06-21 18:04:59 INFO SAMPLE_CLIENT(9901) from com.navercorp.pinpoint.plugin.asynchronous.AsynchronousTraceMetadataProvider
2021-06-21 18:04:59 INFO Finished loading AnnotationKeys:
2021-06-21 18:04:59 INFO thrift.url(80) from com.navercorp.pinpoint.plugin.thrift.ThriftTypeProvider
2021-06-21 18:04:59 INFO thrift.args(81) from com.navercorp.pinpoint.plugin.thrift.ThriftTypeProvider
2021-06-21 18:04:59 INFO thrift.result(82) from com.navercorp.pinpoint.plugin.thrift.ThriftTypeProvider
2021-06-21 18:04:59 INFO dubbo.args(90) from com.navercorp.pinpoint.plugin.dubbo.DubboTraceMetadataProvider
2021-06-21 18:04:59 INFO dubbo.result(91) from com.navercorp.pinpoint.plugin.dubbo.DubboTraceMetadataProvider
2021-06-21 18:04:59 INFO activemq.broker.address(101) from com.navercorp.pinpoint.plugin.activemq.client.ActiveMQClientTraceMetadataProvider
2021-06-21 18:04:59 INFO activemq.message(102) from com.navercorp.pinpoint.plugin.activemq.client.ActiveMQClientTraceMetadataProvider
2021-06-21 18:04:59 INFO hystrix.command(110) from com.navercorp.pinpoint.plugin.hystrix.HystrixTraceMetadataProvider
2021-06-21 18:04:59 INFO hystrix.command.execution(111) from com.navercorp.pinpoint.plugin.hystrix.HystrixTraceMetadataProvider
2021-06-21 18:04:59 INFO hystrix.command.fallback.cause(112) from com.navercorp.pinpoint.plugin.hystrix.HystrixTraceMetadataProvider
2021-06-21 18:04:59 INFO netty.address(120) from com.navercorp.pinpoint.plugin.netty.NettyMetadataProvider
2021-06-21 18:04:59 INFO kafka.topic(140) from com.navercorp.pinpoint.plugin.kafka.KafkaMetadataProvider
2021-06-21 18:04:59 INFO kafka.partition(141) from com.navercorp.pinpoint.plugin.kafka.KafkaMetadataProvider
2021-06-21 18:04:59 INFO kafka.offset(142) from com.navercorp.pinpoint.plugin.kafka.KafkaMetadataProvider
2021-06-21 18:04:59 INFO cxf.operation(200) from com.navercorp.pinpoint.plugin.cxf.CxfPluginTraceMetadataProvider
2021-06-21 18:04:59 INFO cxf.args(201) from com.navercorp.pinpoint.plugin.cxf.CxfPluginTraceMetadataProvider
2021-06-21 18:04:59 INFO MY_ARGUMENT(995) from com.navercorp.pinpoint.plugin.asynchronous.AsynchronousTraceMetadataProvider
2021-06-21 18:04:59 INFO MY_PROCEDURE(996) from com.navercorp.pinpoint.plugin.asynchronous.AsynchronousTraceMetadataProvider
2021-06-21 18:04:59 INFO MY_RESULT(997) from com.navercorp.pinpoint.plugin.asynchronous.AsynchronousTraceMetadataProvider
2021-06-21 18:04:59 INFO MyValue(998) from com.navercorp.pinpoint.plugin.asynchronous.AsynchronousTraceMetadataProvider
2021-06-21 18:04:59 INFO gson.json.length(9000) from com.navercorp.pinpoint.plugin.gson.GsonMetadataProvider
2021-06-21 18:04:59 INFO jackson.json.length(9001) from com.navercorp.pinpoint.plugin.jackson.JacksonTypeProvider
2021-06-21 18:04:59 INFO json-lib.json.length(9002) from com.navercorp.pinpoint.plugin.json_lib.JsonLibTypeProvider
2021-06-21 18:04:59 INFO add Default ServiceType:UNDEFINED
2021-06-21 18:04:59 INFO add Default ServiceType:UNKNOWN
2021-06-21 18:04:59 INFO add Default ServiceType:USER
2021-06-21 18:04:59 INFO add Default ServiceType:UNKNOWN_GROUP
2021-06-21 18:04:59 INFO add Default ServiceType:TEST
2021-06-21 18:04:59 INFO add Default ServiceType:COLLECTOR
2021-06-21 18:04:59 INFO add Default ServiceType:ASYNC
2021-06-21 18:04:59 INFO add Default ServiceType:STAND_ALONE
2021-06-21 18:04:59 INFO add Default ServiceType:TEST_STAND_ALONE
2021-06-21 18:04:59 INFO add Default ServiceType:UNAUTHORIZED
2021-06-21 18:04:59 INFO add Default ServiceType:UNKNOWN_DB
2021-06-21 18:04:59 INFO add Default ServiceType:UNKNOWN_DB
2021-06-21 18:04:59 INFO add Default ServiceType:INTERNAL_METHOD
2021-06-21 18:04:59 INFO add Default ServiceType:SPRING
2021-06-21 18:04:59 INFO add Default ServiceType:SPRING
2021-06-21 18:04:59 INFO add Plugin ServiceType:ACTIVEMQ_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:ACTIVE_MQ_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:ARCUS
2021-06-21 18:04:59 INFO add Plugin ServiceType:ARCUS
2021-06-21 18:04:59 INFO add Plugin ServiceType:ARCUS-EHCACHE
2021-06-21 18:04:59 INFO add Plugin ServiceType:MEMCACHED
2021-06-21 18:04:59 INFO add Plugin ServiceType:MEMCACHED
2021-06-21 18:04:59 INFO add Plugin ServiceType:PluginExample
2021-06-21 18:04:59 INFO add Plugin ServiceType:SAMPLE_SERVER
2021-06-21 18:04:59 INFO add Plugin ServiceType:SAMPLE_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:CASSANDRA
2021-06-21 18:04:59 INFO add Plugin ServiceType:CASSANDRA
2021-06-21 18:04:59 INFO add Plugin ServiceType:DBCP
2021-06-21 18:04:59 INFO add Plugin ServiceType:DBCP2
2021-06-21 18:04:59 INFO add Plugin ServiceType:CUBRID
2021-06-21 18:04:59 INFO add Plugin ServiceType:CUBRID
2021-06-21 18:04:59 INFO add Plugin ServiceType:CXF_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:DUBBO_PROVIDER
2021-06-21 18:04:59 INFO add Plugin ServiceType:DUBBO_CONSUMER
2021-06-21 18:04:59 INFO add Plugin ServiceType:GOOGLE_HTTP_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:GSON
2021-06-21 18:04:59 INFO add Plugin ServiceType:HIKARICP
2021-06-21 18:04:59 INFO add Plugin ServiceType:HTTP_CLIENT_3
2021-06-21 18:04:59 INFO add Plugin ServiceType:HTTP_CLIENT_3
2021-06-21 18:04:59 INFO add Plugin ServiceType:HTTP_CLIENT_4
2021-06-21 18:04:59 INFO add Plugin ServiceType:HTTP_CLIENT_4
2021-06-21 18:04:59 INFO add Plugin ServiceType:HYSTRIX_COMMAND
2021-06-21 18:04:59 INFO add Plugin ServiceType:HYSTRIX_COMMAND
2021-06-21 18:04:59 INFO add Plugin ServiceType:IBATIS
2021-06-21 18:04:59 INFO add Plugin ServiceType:IBATIS
2021-06-21 18:04:59 INFO add Plugin ServiceType:JACKSON
2021-06-21 18:04:59 INFO add Plugin ServiceType:JBOSS
2021-06-21 18:04:59 INFO add Plugin ServiceType:JBOSS_METHOD
2021-06-21 18:04:59 INFO add Plugin ServiceType:JDK_HTTPCONNECTOR
2021-06-21 18:04:59 INFO add Plugin ServiceType:JETTY
2021-06-21 18:04:59 INFO add Plugin ServiceType:JETTY_METHOD
2021-06-21 18:04:59 INFO add Plugin ServiceType:JSON-LIB
2021-06-21 18:04:59 INFO add Plugin ServiceType:JSP
2021-06-21 18:04:59 INFO add Plugin ServiceType:MSSQLSERVER
2021-06-21 18:04:59 INFO add Plugin ServiceType:MSSQLSERVER
2021-06-21 18:04:59 INFO add Plugin ServiceType:KAFKA_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:KAFKA_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:MARIADB
2021-06-21 18:04:59 INFO add Plugin ServiceType:MARIADB
2021-06-21 18:04:59 INFO add Plugin ServiceType:MYBATIS
2021-06-21 18:04:59 INFO add Plugin ServiceType:MYSQL
2021-06-21 18:04:59 INFO add Plugin ServiceType:MYSQL
2021-06-21 18:04:59 INFO add Plugin ServiceType:NETTY
2021-06-21 18:04:59 INFO add Plugin ServiceType:NETTY_INTERNAL
2021-06-21 18:04:59 INFO add Plugin ServiceType:NETTY_HTTP
2021-06-21 18:04:59 INFO add Plugin ServiceType:ASYNC_HTTP_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:ASYNC_HTTP_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:OK_HTTP_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:OK_HTTP_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:ORACLE
2021-06-21 18:04:59 INFO add Plugin ServiceType:ORACLE
2021-06-21 18:04:59 INFO add Plugin ServiceType:POSTGRESQL
2021-06-21 18:04:59 INFO add Plugin ServiceType:POSTGRESQL
2021-06-21 18:04:59 INFO add Plugin ServiceType:REDIS
2021-06-21 18:04:59 INFO add Plugin ServiceType:RESIN
2021-06-21 18:04:59 INFO add Plugin ServiceType:RESIN_METHOD
2021-06-21 18:04:59 INFO add Plugin ServiceType:REST_TEMPLATE
2021-06-21 18:04:59 INFO add Plugin ServiceType:SPRING_BOOT
2021-06-21 18:04:59 INFO add Plugin ServiceType:SPRING_BEAN
2021-06-21 18:04:59 INFO add Plugin ServiceType:SPRING
2021-06-21 18:04:59 INFO add Plugin ServiceType:THRIFT_SERVER
2021-06-21 18:04:59 INFO add Plugin ServiceType:THRIFT_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:THRIFT_SERVER
2021-06-21 18:04:59 INFO add Plugin ServiceType:THRIFT_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:TOMCAT
2021-06-21 18:04:59 INFO add Plugin ServiceType:TOMCAT_METHOD
2021-06-21 18:04:59 INFO add Plugin ServiceType:VERTX
2021-06-21 18:04:59 INFO add Plugin ServiceType:VERTX
2021-06-21 18:04:59 INFO add Plugin ServiceType:VERTX_HTTP_SERVER
2021-06-21 18:04:59 INFO add Plugin ServiceType:VERTX_HTTP_SERVER
2021-06-21 18:04:59 INFO add Plugin ServiceType:VERTX_HTTP_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:VERTX_HTTP_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:WEBLOGIC
2021-06-21 18:04:59 INFO add Plugin ServiceType:WEBLOGIC_METHOD
2021-06-21 18:04:59 INFO add Plugin ServiceType:WEBSPHERE
2021-06-21 18:04:59 INFO add Plugin ServiceType:WEBSPHERE_METHOD
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=12, name='API}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=13, name='API-METADATA}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=14, name='RETURN_DATA}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=10015, name='API-TAG}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=10000010, name='API-METADATA-ERROR}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=10000011, name='API-METADATA-AGENT-INFO-NOT-FOUND}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=10000012, name='API-METADATA-IDENTIFIER-CHECK_ERROR}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=10000013, name='API-METADATA-NOT-FOUND}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=10000014, name='API-METADATA-DID-COLLSION}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=20, name='SQL-ID}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=21, name='SQL}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=22, name='SQL-METADATA}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=23, name='SQL-PARAM}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=24, name='SQL-BindValue}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=30, name='STRING_ID}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=40, name='http.url}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=41, name='http.param}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=42, name='http.entity}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=45, name='http.cookie}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=46, name='http.status.code}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=48, name='http.internal.display}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=49, name='http.io}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=100, name='message.queue.url}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-1, name='args[0]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-2, name='args[1]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-3, name='args[2]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-4, name='args[3]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-5, name='args[4]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-6, name='args[5]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-7, name='args[6]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-8, name='args[7]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-9, name='args[8]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-10, name='args[9]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-11, name='args[N]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-30, name='cached_args[0]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-31, name='cached_args[1]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-32, name='cached_args[2]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-33, name='cached_args[3]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-34, name='cached_args[4]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-35, name='cached_args[5]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-36, name='cached_args[6]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-37, name='cached_args[7]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-38, name='cached_args[8]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-39, name='cached_args[9]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-40, name='cached_args[N]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-50, name='Exception}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-51, name='ExceptionClass}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-9999, name='UNKNOWN}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-100, name='Asynchronous Invocation}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=300, name='PROXY_HTTP_HEADER}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=310, name='redis.io}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=101, name='activemq.broker.address}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=102, name='activemq.message}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=998, name='MyValue}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=996, name='MY_PROCEDURE}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=995, name='MY_ARGUMENT}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=997, name='MY_RESULT}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=200, name='cxf.operation}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=201, name='cxf.args}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=90, name='dubbo.args}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=91, name='dubbo.result}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=9000, name='gson.json.length}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=110, name='hystrix.command}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=111, name='hystrix.command.execution}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=112, name='hystrix.command.fallback.cause}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=9001, name='jackson.json.length}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=9002, name='json-lib.json.length}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=140, name='kafka.topic}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=141, name='kafka.partition}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=142, name='kafka.offset}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=120, name='netty.address}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=80, name='thrift.url}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=81, name='thrift.args}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=82, name='thrift.result}
2021-06-21 18:04:59 INFO profiler.enable=true
2021-06-21 18:04:59 INFO profiler.instrument.engine=ASM
2021-06-21 18:04:59 INFO profiler.instrument.matcher.enable=true
2021-06-21 18:04:59 INFO profiler.dynamicConfig.enable=false
2021-06-21 18:04:59 INFO profiler.dynamicConfig.url=http://127.0.0.1:8080/pinpoint-config/v1/agentConfig
2021-06-21 18:04:59 INFO profiler.instrument.matcher.interface.cache.size=4
2021-06-21 18:04:59 INFO profiler.instrument.matcher.interface.cache.entry.size=16
2021-06-21 18:04:59 INFO profiler.instrument.matcher.annotation.cache.size=4
2021-06-21 18:04:59 INFO profiler.instrument.matcher.annotation.cache.entry.size=4
2021-06-21 18:04:59 INFO profiler.instrument.matcher.super.cache.size=4
2021-06-21 18:04:59 INFO profiler.instrument.matcher.super.cache.entry.size=4
2021-06-21 18:04:59 INFO profiler.interceptorregistry.size=8192
2021-06-21 18:04:59 INFO profiler.collector.span.ip=10.47.161.66
2021-06-21 18:04:59 INFO profiler.collector.span.port=9996
2021-06-21 18:04:59 INFO profiler.collector.stat.ip=10.47.161.66
2021-06-21 18:04:59 INFO profiler.collector.stat.port=9995
2021-06-21 18:04:59 INFO profiler.collector.tcp.ip=10.47.161.66
2021-06-21 18:04:59 INFO profiler.collector.tcp.port=9994
2021-06-21 18:04:59 INFO profiler.spandatasender.write.queue.size=5120
2021-06-21 18:04:59 INFO profiler.spandatasender.socket.sendbuffersize=1048576
2021-06-21 18:04:59 INFO profiler.spandatasender.socket.timeout=3000
2021-06-21 18:04:59 INFO profiler.spandatasender.chunk.size=16384
2021-06-21 18:04:59 INFO profiler.spandatasender.socket.type=OIO
2021-06-21 18:04:59 INFO profiler.spandatasender.transport.type=UDP
2021-06-21 18:04:59 INFO profiler.statdatasender.write.queue.size=5120
2021-06-21 18:04:59 INFO profiler.statdatasender.socket.sendbuffersize=1048576
2021-06-21 18:04:59 INFO profiler.statdatasender.socket.timeout=3000
2021-06-21 18:04:59 INFO profiler.statdatasender.chunk.size=16384
2021-06-21 18:04:59 INFO profiler.statdatasender.socket.type=OIO
2021-06-21 18:04:59 INFO profiler.statdatasender.transport.type=UDP
2021-06-21 18:04:59 INFO profiler.tcpdatasender.command.accept.enable=true
2021-06-21 18:04:59 INFO profiler.tcpdatasender.command.activethread.enable=true
2021-06-21 18:04:59 INFO profiler.tcpdatasender.command.activethread.count.enable=true
2021-06-21 18:04:59 INFO profiler.tcpdatasender.command.activethread.threaddump.enable=true
2021-06-21 18:04:59 INFO profiler.tcpdatasender.command.activethread.threadlightdump.enable=true
2021-06-21 18:04:59 INFO profiler.pinpoint.activethread=true
2021-06-21 18:04:59 INFO profiler.pinpoint.datasource=true
2021-06-21 18:04:59 INFO profiler.pinpoint.datasource.tracelimitsize=20
2021-06-21 18:04:59 INFO profiler.monitor.deadlock.enable=true
2021-06-21 18:04:59 INFO profiler.monitor.deadlock.interval=60000
2021-06-21 18:04:59 INFO profiler.callstack.max.depth=64
2021-06-21 18:04:59 INFO profiler.jdbc.sqlcachesize=1024
2021-06-21 18:04:59 INFO profiler.jdbc.tracesqlbindvalue=true
2021-06-21 18:04:59 INFO profiler.sampling.enable=true
2021-06-21 18:04:59 INFO profiler.sampling.rate=1
2021-06-21 18:04:59 INFO profiler.io.buffering.enable=true
2021-06-21 18:04:59 INFO profiler.io.buffering.buffersize=20
2021-06-21 18:04:59 INFO profiler.jvm.vendor.name=
2021-06-21 18:04:59 INFO profiler.jvm.stat.collect.interval=5000
2021-06-21 18:04:59 INFO profiler.jvm.stat.batch.send.count=6
2021-06-21 18:04:59 INFO profiler.stat.jvm.collect.detailed.metrics=false
2021-06-21 18:04:59 INFO profiler.agentInfo.send.retry.interval=300000
2021-06-21 18:04:59 INFO profiler.applicationservertype=null
2021-06-21 18:04:59 INFO profiler.include=
2021-06-21 18:04:59 INFO profiler.interceptor.exception.propagate=false
2021-06-21 18:04:59 INFO profiler.lambda.expressions.support=true
2021-06-21 18:04:59 INFO profiler.proxy.http.header.enable=true
2021-06-21 18:04:59 INFO configuration loaded successfully.
UN_USED_PORT:65535
log4j:WARN No appenders could be found for logger (org.jboss.netty.channel.socket.nio.SelectorUtil).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
2021-06-21 18:05:01 INFO profiler.activemq.client.enable=true
2021-06-21 18:05:01 INFO profiler.activemq.client.producer.enable=true
2021-06-21 18:05:01 INFO profiler.activemq.client.consumer.enable=true
2021-06-21 18:05:01 INFO profiler.activemq.client.destination.separator=
2021-06-21 18:05:01 INFO profiler.activemq.client.destination.exclude=
2021-06-21 18:05:01 INFO profiler.arcus=true
2021-06-21 18:05:01 INFO profiler.arcus.keytrace=true
2021-06-21 18:05:01 INFO profiler.arcus.async=true
2021-06-21 18:05:01 INFO profiler.memcached=true
2021-06-21 18:05:01 INFO profiler.memcached.keytrace=true
2021-06-21 18:05:01 INFO profiler.memcached.async=true
2021-06-21 18:05:01 INFO profiler.entranceClass=
2021-06-21 18:05:01 INFO profiler.asynClass=
2021-06-21 18:05:01 INFO profiler.asynEnable=false
2021-06-21 18:05:01 INFO profiler.cassandra=true
2021-06-21 18:05:01 INFO profiler.cassandra.tracecqlbindvalue=true
2021-06-21 18:05:01 INFO profiler.jdbc.dbcp=true
2021-06-21 18:05:01 INFO profiler.jdbc.dbcp.connectionclose=true
2021-06-21 18:05:01 INFO profiler.jdbc.dbcp2=true
2021-06-21 18:05:01 INFO profiler.jdbc.dbcp2.connectionclose=true
2021-06-21 18:05:01 INFO profiler.jdbc.cubrid=true
2021-06-21 18:05:01 INFO profiler.jdbc.cubrid.tracesqlbindvalue=true
2021-06-21 18:05:01 INFO profiler.jdbc.cubrid.setautocommit=true
2021-06-21 18:05:01 INFO profiler.jdbc.cubrid.commit=true
2021-06-21 18:05:01 INFO profiler.jdbc.cubrid.rollback=true
2021-06-21 18:05:01 INFO profiler.cxf.client=false
2021-06-21 18:05:01 INFO profiler.cxf.client.hiddenParams=
2021-06-21 18:05:01 INFO profiler.dubbo.enable=true
2021-06-21 18:05:01 INFO profiler.google.httpclient.async=true
2021-06-21 18:05:01 INFO profiler.json.gson=true
2021-06-21 18:05:01 INFO profiler.jdbc.hikaricp=true
2021-06-21 18:05:01 INFO profiler.jdbc.hikaricp.connectionclose=true
2021-06-21 18:05:01 INFO profiler.apache.httpclient3.param=true
2021-06-21 18:05:01 INFO profiler.apache.httpclient3.cookie=true
2021-06-21 18:05:01 INFO profiler.apache.httpclient3.cookie.dumptype=ALWAYS
2021-06-21 18:05:01 INFO profiler.apache.httpclient3.cookie.sampling.rate=1
2021-06-21 18:05:01 INFO profiler.apache.httpclient3.entity=true
2021-06-21 18:05:01 INFO profiler.apache.httpclient3.entity.dumptype=ALWAYS
2021-06-21 18:05:01 INFO profiler.apache.httpclient3.entity.sampling.rate=1
2021-06-21 18:05:01 INFO profiler.apache.httpclient3.io=true
2021-06-21 18:05:01 INFO profiler.apache.httpclient4.param=true
2021-06-21 18:05:01 INFO profiler.apache.httpclient4.cookie=true
2021-06-21 18:05:01 INFO profiler.apache.httpclient4.cookie.dumptype=ALWAYS
2021-06-21 18:05:01 INFO profiler.apache.httpclient4.cookie.sampling.rate=1
2021-06-21 18:05:01 INFO profiler.apache.httpclient4.entity=true
2021-06-21 18:05:01 INFO profiler.apache.httpclient4.entity.dumptype=ALWAYS
2021-06-21 18:05:01 INFO profiler.apache.httpclient4.entity.sampling.rate=1
2021-06-21 18:05:01 INFO profiler.apache.httpclient4.entity.statuscode=true
2021-06-21 18:05:01 INFO profiler.apache.httpclient4.io=true
2021-06-21 18:05:01 INFO profiler.hystrix=true
2021-06-21 18:05:01 INFO profiler.hystrix.command.num.anonymousInnerClass=3
2021-06-21 18:05:01 INFO profiler.orm.ibatis=true
2021-06-21 18:05:01 INFO profiler.json.jackson=true
2021-06-21 18:05:01 INFO profiler.jboss.enable=true
2021-06-21 18:05:01 INFO profiler.jboss.traceEjb=false
2021-06-21 18:05:01 INFO profiler.jboss.conditional.transform=true
2021-06-21 18:05:01 INFO profiler.jboss.hidepinpointheader=true
2021-06-21 18:05:01 INFO profiler.jboss.tracerequestparam=true
2021-06-21 18:05:01 INFO profiler.jboss.excludeurl=
2021-06-21 18:05:01 INFO profiler.jboss.realipheader=null
2021-06-21 18:05:01 INFO profiler.jboss.realipemptyvalue=null
2021-06-21 18:05:01 INFO profiler.jboss.excludemethod=
2021-06-21 18:05:01 INFO profiler.jetty.enable=true
2021-06-21 18:05:01 INFO profiler.jetty.excludeurl=
2021-06-21 18:05:01 INFO profiler.json.jsonlib=true
2021-06-21 18:05:01 INFO profiler.jsp.enable=true
2021-06-21 18:05:01 INFO profiler.jdbc.jtds=true
2021-06-21 18:05:01 INFO profiler.jdbc.jtds.tracesqlbindvalue=true
2021-06-21 18:05:01 INFO profiler.jdbc.jtds.setautocommit=true
2021-06-21 18:05:01 INFO profiler.jdbc.jtds.commit=true
2021-06-21 18:05:01 INFO profiler.jdbc.jtds.rollback=true
2021-06-21 18:05:01 INFO profiler.kafka.enable=true
2021-06-21 18:05:01 INFO profiler.kafka.entryPoint=
2021-06-21 18:05:01 INFO profiler.log4j.logging.transactioninfo=false
2021-06-21 18:05:01 INFO profiler.logback.logging.transactioninfo=false
2021-06-21 18:05:01 INFO profiler.jdbc.mariadb=true
2021-06-21 18:05:01 INFO profiler.jdbc.mariadb.tracesqlbindvalue=true
2021-06-21 18:05:01 INFO profiler.jdbc.mariadb.setautocommit=true
2021-06-21 18:05:01 INFO profiler.jdbc.mariadb.commit=true
2021-06-21 18:05:01 INFO profiler.jdbc.mariadb.rollback=true
2021-06-21 18:05:01 INFO profiler.orm.mybatis=true
2021-06-21 18:05:01 INFO profiler.jdbc.mysql=true
2021-06-21 18:05:01 INFO profiler.jdbc.mysql.tracesqlbindvalue=true
2021-06-21 18:05:01 INFO profiler.jdbc.mysql.setautocommit=true
2021-06-21 18:05:01 INFO profiler.jdbc.mysql.commit=true
2021-06-21 18:05:01 INFO profiler.jdbc.mysql.rollback=true
2021-06-21 18:05:01 INFO profiler.netty=false
2021-06-21 18:05:01 INFO profiler.netty.http=false
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient=true
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient.cookie=true
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient.cookie.dumptype=ALWAYS
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient.cookie.dumpsize=1024
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient.cookie.sampling.rate=1
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient.entity=true
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient.entity.dumptype=ALWAYS
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient.entity.dumpsize=1024
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient.entity.sampling.rate=1
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient.param=true
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient.param.dumptype=ALWAYS
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient.param.dumpsize=1024
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient.param.sampling.rate=1
2021-06-21 18:05:01 INFO profiler.okhttp.enable=true
2021-06-21 18:05:01 INFO profiler.okhttp.param=true
2021-06-21 18:05:01 INFO profiler.okhttp.cookie=false
2021-06-21 18:05:01 INFO profiler.okhttp.cookie.dumptype=EXCEPTION
2021-06-21 18:05:01 INFO profiler.okhttp.cookie.sampling.rate=10
2021-06-21 18:05:01 INFO profiler.okhttp.entity.statuscode=true
2021-06-21 18:05:01 INFO profiler.okhttp.async=true
2021-06-21 18:05:01 INFO profiler.okhttp.enable=true
2021-06-21 18:05:01 INFO profiler.okhttp.param=true
2021-06-21 18:05:01 INFO profiler.okhttp.cookie=false
2021-06-21 18:05:01 INFO profiler.okhttp.cookie.dumptype=EXCEPTION
2021-06-21 18:05:01 INFO profiler.okhttp.cookie.sampling.rate=10
2021-06-21 18:05:01 INFO profiler.okhttp.entity.statuscode=true
2021-06-21 18:05:01 INFO profiler.okhttp.async=true
2021-06-21 18:05:01 INFO profiler.jdbc.oracle=true
2021-06-21 18:05:01 INFO profiler.jdbc.oracle.tracesqlbindvalue=true
2021-06-21 18:05:01 INFO profiler.jdbc.oracle.setautocommit=true
2021-06-21 18:05:01 INFO profiler.jdbc.oracle.commit=true
2021-06-21 18:05:01 INFO profiler.jdbc.oracle.rollback=true
2021-06-21 18:05:01 INFO profiler.jdbc.postgresql=true
2021-06-21 18:05:01 INFO profiler.jdbc.postgresql.setautocommit=true
2021-06-21 18:05:01 INFO profiler.jdbc.postgresql.commit=true
2021-06-21 18:05:01 INFO profiler.jdbc.postgresql.rollback=true
2021-06-21 18:05:01 INFO profiler.jdbc.maxsqlbindvaluesize=1024
2021-06-21 18:05:01 INFO profiler.redis=true
2021-06-21 18:05:01 INFO profiler.redis.enable=true
2021-06-21 18:05:01 INFO profiler.redis.pipeline=false
2021-06-21 18:05:01 INFO profiler.redis.io=true
2021-06-21 18:05:01 INFO profiler.resin.enable=true
2021-06-21 18:05:01 INFO profiler.resin.bootstrap.main=
2021-06-21 18:05:01 INFO profiler.resin.tracerequestparam=true
2021-06-21 18:05:01 INFO profiler.resin.excludeurl=
2021-06-21 18:05:01 INFO profiler.resin.realipheader=null
2021-06-21 18:05:01 INFO profiler.resin.realipemptyvalue=null
2021-06-21 18:05:01 INFO profiler.resin.excludemethod=
2021-06-21 18:05:01 INFO profiler.resin.hidepinpointheader=true
2021-06-21 18:05:01 INFO profiler.resin.tracecookies=true
2021-06-21 18:05:01 INFO profiler.resin.cookie.sampling.rate=10
2021-06-21 18:05:01 INFO profiler.resin.cookie.dumptype=ALWAYS
2021-06-21 18:05:01 INFO profiler.resttemplate=false
2021-06-21 18:05:01 INFO profiler.springboot.enable=true
2021-06-21 18:05:01 INFO profiler.spring.beans=true
2021-06-21 18:05:01 INFO profiler.spring.beans.name.pattern=null
2021-06-21 18:05:01 INFO profiler.spring.beans.class.pattern=null
2021-06-21 18:05:01 INFO profiler.spring.beans.annotation=null
2021-06-21 18:05:01 INFO profiler.spring.beans.[0-9]+(.scope|.base-packages|.name.pattern|.class.pattern|.annotation)={profiler.spring.beans.1.class.pattern=, profiler.spring.beans.1.scope=component-scan, profiler.spring.beans.1.name.pattern=, profiler.spring.beans.1.base-packages=, profiler.spring.beans.1.annotation=org.springframework.stereotype.Controller,org.springframework.stereotype.Service,org.springframework.stereotype.Repository}
2021-06-21 18:05:01 INFO profiler.spring.beans.mark.error=false
2021-06-21 18:05:01 INFO profiler.thrift.client=true
2021-06-21 18:05:01 INFO profiler.thrift.client.async=true
2021-06-21 18:05:01 INFO profiler.thrift.processor=true
2021-06-21 18:05:01 INFO profiler.thrift.processor.async=true
2021-06-21 18:05:01 INFO profiler.thrift.service.args=true
2021-06-21 18:05:01 INFO profiler.thrift.service.result=true
2021-06-21 18:05:01 INFO profiler.tomcat.enable=true
2021-06-21 18:05:01 INFO profiler.tomcat.conditional.transform=true
2021-06-21 18:05:01 INFO profiler.tomcat.hidepinpointheader=true
2021-06-21 18:05:01 INFO profiler.tomcat.tracerequestparam=true
2021-06-21 18:05:01 INFO profiler.tomcat.excludeurl=/aa/test.html, /bb/exclude.html
2021-06-21 18:05:01 INFO profiler.tomcat.realipheader=null
2021-06-21 18:05:01 INFO profiler.tomcat.realipemptyvalue=null
2021-06-21 18:05:01 INFO profiler.tomcat.excludemethod=
2021-06-21 18:05:01 INFO profiler.entrypoint=
2021-06-21 18:05:01 INFO profiler.vertx.enable=false
2021-06-21 18:05:01 INFO profiler.vertx.http.server.enable=false
2021-06-21 18:05:01 INFO profiler.vertx.http.client.enable=false
2021-06-21 18:05:01 INFO profiler.weblogic.enable=true
2021-06-21 18:05:01 INFO profiler.weblogic.excludeurl=
2021-06-21 18:05:01 INFO profiler.websphere.excludeurl=
2021-06-21 18:05:16 INFO profiler.trace.dataformat.version=v1
2021-06-21 18:05:16 INFO profiler.trace.dataformat.version=v1
2021-06-21 18:05:16 INFO profiler.trace.dataformat.version=v1
2021-06-21 18:05:16 INFO profiler.debug.injector.type=debug
2021-06-21 18:05:16 INFO bytecode.dump.enable=false
2021-06-21 18:05:25 INFO profiler.spring.beans.name.pattern=null
2021-06-21 18:05:25 INFO profiler.spring.beans.class.pattern=null
2021-06-21 18:05:25 INFO profiler.spring.beans.annotation=null
2021-06-21 18:05:25 INFO profiler.spring.beans.[0-9]+(.scope|.base-packages|.name.pattern|.class.pattern|.annotation)={profiler.spring.beans.1.class.pattern=, profiler.spring.beans.1.scope=component-scan, profiler.spring.beans.1.name.pattern=, profiler.spring.beans.1.base-packages=, profiler.spring.beans.1.annotation=org.springframework.stereotype.Controller,org.springframework.stereotype.Service,org.springframework.stereotype.Repository}
[mizar-cloud] [$] [2021-06-21 18:05:25.243] [INFO] [background-preinit] [org.hibernate.validator.internal.util.Version] [<clinit>] [21] : HV000001: Hibernate Validator 6.1.5.Final
[mizar-cloud-demo] [$] [2021-06-21 18:05:28.446] [INFO] [main] [com.ctrip.framework.foundation.internals.provider.DefaultApplicationProvider] [initAppId] [96] : App ID is set to 548676 by app.id property from /META-INF/app.properties
[mizar-cloud-demo] [$] [2021-06-21 18:05:28.512] [WARN] [main] [com.ctrip.framework.foundation.internals.provider.DefaultServerProvider] [initialize] [40] : /opt/settings/server.properties does not exist or is not readable.
[mizar-cloud-demo] [$] [2021-06-21 18:05:28.513] [INFO] [main] [com.ctrip.framework.foundation.internals.provider.DefaultServerProvider] [initEnvType] [109] : Environment is set to [STG] by JVM system property 'env'.
[mizar-cloud-demo] [$] [2021-06-21 18:05:28.514] [INFO] [main] [com.ctrip.framework.foundation.internals.provider.DefaultServerProvider] [initDataCenter] [139] : Data Center is set to [default] by JVM system property 'idc'.
2021-06-21 18:05:28 INFO profiler.jdk.http.param=true
2021-06-21 18:05:28 INFO profiler.jdk.http.param=true
2021-06-21 18:05:28 INFO profiler.jdk.http.param=true
[mizar-cloud-demo] [$] [2021-06-21 18:05:29.325] [INFO] [main] [com.pingan.mizar.cloud.demo.Application8080] [logStartupProfileInfo] [651] : No active profile set, falling back to default profiles: default
[mizar-cloud-demo] [$] [2021-06-21 18:05:33.219] [INFO] [main] [org.springframework.data.repository.config.RepositoryConfigurationDelegate] [multipleStoresDetected] [249] : Multiple Spring Data modules found, entering strict repository configuration mode!
[mizar-cloud-demo] [$] [2021-06-21 18:05:33.223] [INFO] [main] [org.springframework.data.repository.config.RepositoryConfigurationDelegate] [registerRepositoriesIn] [127] : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
[mizar-cloud-demo] [$] [2021-06-21 18:05:33.413] [INFO] [main] [org.springframework.data.repository.config.RepositoryConfigurationDelegate] [registerRepositoriesIn] [187] : Finished Spring Data repository scanning in 88ms. Found 0 Redis repository interfaces.
[mizar-cloud-demo] [$] [2021-06-21 18:05:34.928] [INFO] [main] [org.springframework.context.annotation.ConfigurationClassPostProcessor] [enhanceConfigurationClasses] [403] : Cannot enhance @Configuration bean definition 'com.pazl.platform.cfg.spring.boot.ApolloAutoConfiguration' since its singleton instance has been created too early. The typical cause is a non-static @Bean method with a BeanDefinitionRegistryPostProcessor return type: Consider declaring such methods as 'static'.
[mizar-cloud-demo] [$] [2021-06-21 18:05:35.615] [INFO] [main] [org.springframework.cloud.context.scope.GenericScope] [setSerializationId] [295] : BeanFactory id=239083fc-8135-381f-80ef-f2a173829d75
[mizar-cloud-demo] [$] [2021-06-21 18:05:35.628] [WARN] [main] [org.springframework.boot.context.properties.PropertySourcesDeducer] [getSinglePropertySourcesPlaceholderConfigurer] [66] : Multiple PropertySourcesPlaceholderConfigurer beans registered [propertySourcesPlaceholderConfigurer, org.springframework.context.support.PropertySourcesPlaceholderConfigurer], falling back to Environment
2021-06-21 18:05:39 INFO profiler.tomcat.enable=true
2021-06-21 18:05:39 INFO profiler.tomcat.conditional.transform=true
2021-06-21 18:05:39 INFO profiler.tomcat.hidepinpointheader=true
2021-06-21 18:05:39 INFO profiler.tomcat.tracerequestparam=true
2021-06-21 18:05:39 INFO profiler.tomcat.excludeurl=/aa/test.html, /bb/exclude.html
2021-06-21 18:05:39 INFO profiler.tomcat.realipheader=null
2021-06-21 18:05:39 INFO profiler.tomcat.realipemptyvalue=null
2021-06-21 18:05:39 INFO profiler.tomcat.excludemethod=
[mizar-cloud-demo] [$] [2021-06-21 18:05:39.716] [INFO] [main] [org.springframework.boot.web.embedded.tomcat.TomcatWebServer] [initialize] [108] : Tomcat initialized with port(s): 30113 (http)
[mizar-cloud-demo] [$] [2021-06-21 18:05:39.732] [INFO] [main] [org.apache.coyote.http11.Http11NioProtocol] [log] [173] : Initializing ProtocolHandler ["http-nio-30113"]
[mizar-cloud-demo] [$] [2021-06-21 18:05:39.734] [INFO] [main] [org.apache.catalina.core.StandardService] [log] [173] : Starting service [Tomcat]
[mizar-cloud-demo] [$] [2021-06-21 18:05:39.735] [INFO] [main] [org.apache.catalina.core.StandardEngine] [log] [173] : Starting Servlet engine: [Apache Tomcat/9.0.38]
[mizar-cloud-demo] [$] [2021-06-21 18:05:40.223] [INFO] [main] [org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]] [log] [173] : Initializing Spring embedded WebApplicationContext
[mizar-cloud-demo] [$] [2021-06-21 18:05:40.224] [INFO] [main] [org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext] [prepareWebApplicationContext] [285] : Root WebApplicationContext: initialization completed in 10696 ms
[mizar-cloud-demo] [$] [2021-06-21 18:05:42.524] [INFO] [main] [com.pingan.mizar.cloud.db.datasource.DataSourceConfig] [druidDataSource] [85] : =========druid oralce============={
CreateTime:"2021-06-21 18:05:41",
ActiveCount:0,
PoolingCount:0,
CreateCount:0,
DestroyCount:0,
CloseCount:0,
ConnectCount:0,
Connections:[
]
}
[mizar-cloud-demo] [$] [2021-06-21 18:05:42.911] [INFO] [main] [com.pingan.mizar.cloud.db.datasource.DataSourceConfig] [mysqlDruidDataSource] [106] : =========druid mysql============={
CreateTime:"2021-06-21 18:05:42",
ActiveCount:0,
PoolingCount:0,
CreateCount:0,
DestroyCount:0,
CloseCount:0,
ConnectCount:0,
Connections:[
]
}
Logging initialized using 'class org.apache.ibatis.logging.stdout.StdOutImpl' adapter.
| |. __ |
| | |\/|)(| | |\ |)|||_\
/ |
3.3.0
[mizar-cloud-demo] [$] [2021-06-21 18:05:46.214] [INFO] [main] [org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor] [initialize] [181] : Initializing ExecutorService
[mizar-cloud-demo] [$] [2021-06-21 18:05:46.929] [WARN] [main] [com.netflix.config.sources.URLConfigurationSource] [<init>] [121] : No URLs will be polled as dynamic configuration sources.
[mizar-cloud-demo] [$] [2021-06-21 18:05:46.930] [INFO] [main] [com.netflix.config.sources.URLConfigurationSource] [<init>] [122] : To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
[mizar-cloud-demo] [$] [2021-06-21 18:05:47.020] [WARN] [main] [com.netflix.config.sources.URLConfigurationSource] [<init>] [121] : No URLs will be polled as dynamic configuration sources.
[mizar-cloud-demo] [$] [2021-06-21 18:05:47.021] [INFO] [main] [com.netflix.config.sources.URLConfigurationSource] [<init>] [122] : To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
[mizar-cloud-demo] [$] [2021-06-21 18:05:48.834] [INFO] [main] [org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor] [initialize] [181] : Initializing ExecutorService 'applicationTaskExecutor'
[mizar-cloud-demo] [$] [2021-06-21 18:05:54.626] [INFO] [main] [org.springframework.cloud.netflix.eureka.config.DiscoveryClientOptionalArgsConfiguration] [discoveryClientOptionalArgs] [78] : Eureka HTTP Client uses Jersey
[mizar-cloud-demo] [$] [2021-06-21 18:05:55.520] [WARN] [main] [org.springframework.cloud.loadbalancer.config.BlockingLoadBalancerClientAutoConfiguration$BlockingLoadBalancerClientRibbonWarnLogger] [logWarning] [86] : You already have RibbonLoadBalancerClient on your classpath. It will be used by default. As Spring Cloud Ribbon is in maintenance mode. We recommend switching to BlockingLoadBalancerClient instead. In order to use it, set the value of spring.cloud.loadbalancer.ribbon.enabled
to false
or remove spring-cloud-starter-netflix-ribbon from your project.
2021-06-21 18:05:55 INFO profiler.apache.httpclient4.param=true
2021-06-21 18:05:55 INFO profiler.apache.httpclient4.cookie=true
2021-06-21 18:05:55 INFO profiler.apache.httpclient4.cookie.dumptype=ALWAYS
2021-06-21 18:05:55 INFO profiler.apache.httpclient4.cookie.sampling.rate=1
2021-06-21 18:05:55 INFO profiler.apache.httpclient4.entity=true
2021-06-21 18:05:55 INFO profiler.apache.httpclient4.entity.dumptype=ALWAYS
2021-06-21 18:05:55 INFO profiler.apache.httpclient4.entity.sampling.rate=1
2021-06-21 18:05:55 INFO profiler.apache.httpclient4.entity.statuscode=true
2021-06-21 18:05:55 INFO profiler.apache.httpclient4.io=true
[mizar-cloud-demo] [$] [2021-06-21 18:05:56.233] [INFO] [main] [org.springframework.cloud.netflix.eureka.InstanceInfoFactory] [create] [72] : Setting initial instance status as: STARTING
[mizar-cloud-demo] [$] [2021-06-21 18:05:56.814] [INFO] [main] [com.netflix.discovery.DiscoveryClient] [<init>] [371] : Initializing Eureka in region us-east-1
[mizar-cloud-demo] [$] [2021-06-21 18:05:57.523] [INFO] [main] [com.netflix.discovery.provider.DiscoveryJerseyProvider] [<init>] [70] : Using JSON encoding codec LegacyJacksonJson
[mizar-cloud-demo] [$] [2021-06-21 18:05:57.524] [INFO] [main] [com.netflix.discovery.provider.DiscoveryJerseyProvider] [<init>] [71] : Using JSON decoding codec LegacyJacksonJson
[mizar-cloud-demo] [$] [2021-06-21 18:05:58.733] [INFO] [main] [com.netflix.discovery.provider.DiscoveryJerseyProvider] [<init>] [80] : Using XML encoding codec XStreamXml
[mizar-cloud-demo] [$] [2021-06-21 18:05:58.812] [INFO] [main] [com.netflix.discovery.provider.DiscoveryJerseyProvider] [<init>] [81] : Using XML decoding codec XStreamXml
[mizar-cloud-demo] [$] [2021-06-21 18:06:00.622] [INFO] [main] [com.netflix.discovery.shared.resolver.aws.ConfigClusterResolver] [getClusterEndpoints] [43] : Resolving eureka endpoints via configuration
[mizar-cloud-demo] [$] [2021-06-21 18:06:00.733] [INFO] [main] [com.netflix.discovery.DiscoveryClient] [fetchRegistry] [1004] : Disable delta property : false
[mizar-cloud-demo] [$] [2021-06-21 18:06:00.734] [INFO] [main] [com.netflix.discovery.DiscoveryClient] [fetchRegistry] [1005] : Single vip registry refresh property : null
[mizar-cloud-demo] [$] [2021-06-21 18:06:00.734] [INFO] [main] [com.netflix.discovery.DiscoveryClient] [fetchRegistry] [1006] : Force full registry fetch : false
[mizar-cloud-demo] [$] [2021-06-21 18:06:00.811] [INFO] [main] [com.netflix.discovery.DiscoveryClient] [fetchRegistry] [1007] : Application is null : false
[mizar-cloud-demo] [$] [2021-06-21 18:06:00.812] [INFO] [main] [com.netflix.discovery.DiscoveryClient] [fetchRegistry] [1008] : Registered Applications size is zero : true
[mizar-cloud-demo] [$] [2021-06-21 18:06:00.812] [INFO] [main] [com.netflix.discovery.DiscoveryClient] [fetchRegistry] [1010] : Application version is -1: true
[mizar-cloud-demo] [$] [2021-06-21 18:06:00.813] [INFO] [main] [com.netflix.discovery.DiscoveryClient] [getAndStoreFullRegistry] [1093] : Getting all instance registry info from the eureka server
[mizar-cloud-demo] [$] [2021-06-21 18:06:02.822] [INFO] [main] [com.netflix.discovery.DiscoveryClient] [getAndStoreFullRegistry] [1102] : The response status is 200
[mizar-cloud-demo] [$] [2021-06-21 18:06:02.916] [INFO] [main] [com.netflix.discovery.DiscoveryClient] [initScheduledTasks] [1317] : Starting heartbeat executor: renew interval is: 30
[mizar-cloud-demo] [$] [2021-06-21 18:06:02.921] [INFO] [main] [com.netflix.discovery.InstanceInfoReplicator] [<init>] [60] : InstanceInfoReplicator onDemand update allowed rate per min is 4
[mizar-cloud-demo] [$] [2021-06-21 18:06:02.927] [INFO] [main] [com.netflix.discovery.DiscoveryClient] [<init>] [491] : Discovery Client initialized at timestamp 1624269962925 with initial instances count: 618
[mizar-cloud-demo] [$] [2021-06-21 18:06:03.012] [INFO] [main] [org.springframework.cloud.netflix.eureka.serviceregistry.EurekaServiceRegistry] [register] [41] : Registering application UNKNOWN with eureka with status UP
[mizar-cloud-demo] [$] [2021-06-21 18:06:03.014] [INFO] [main] [com.netflix.discovery.DiscoveryClient] [notify] [1353] : Saw local status change event StatusChangeEvent [timestamp=1624269963014, current=UP, previous=STARTING]
[mizar-cloud-demo] [$] [2021-06-21 18:06:03.018] [INFO] [DiscoveryClient-InstanceInfoReplicator-0] [com.netflix.discovery.DiscoveryClient] [register] [870] : DiscoveryClient_UNKNOWN/LFB-L0439979::30113: registering service...
[mizar-cloud-demo] [$] [2021-06-21 18:06:03.018] [INFO] [main] [org.apache.coyote.http11.Http11NioProtocol] [log] [173] : Starting ProtocolHandler ["http-nio-30113"]
[mizar-cloud-demo] [$] [2021-06-21 18:06:03.127] [INFO] [main] [org.springframework.boot.web.embedded.tomcat.TomcatWebServer] [start] [220] : Tomcat started on port(s): 30113 (http) with context path ''
[mizar-cloud-demo] [$] [2021-06-21 18:06:03.129] [INFO] [main] [org.springframework.cloud.netflix.eureka.serviceregistry.EurekaAutoServiceRegistration] [onApplicationEvent] [145] : Updating port to 30113
[mizar-cloud-demo] [$] [2021-06-21 18:06:03.313] [INFO] [main] [com.pingan.mizar.cloud.demo.Application8080] [logStarted] [61] : Started Application8080 in 42.488 seconds (JVM running for 64.214)
[mizar-cloud-demo] [$] [2021-06-21 18:06:03.314] [INFO] [DiscoveryClient-InstanceInfoReplicator-0] [com.netflix.discovery.DiscoveryClient] [register] [879] : DiscoveryClient_UNKNOWN/LFB-L0439979::30113 - registration status: 204
[mizar-cloud-demo] [$] [2021-06-21 18:06:03.316] [INFO] [main] [com.pingan.mizar.cloud.demo.Application8080] [main] [26] : sl4j test
[mizar-cloud-demo] [$] [2021-06-21 18:06:03.316] [ERROR] [main] [com.pingan.mizar.cloud.demo.Application8080] [main] [27] : sl4j test
(♥◠‿◠)ノ゙ demo模块启动成功 ლ(´ڡ`ლ)゙
[mizar-cloud-demo] [$] [2021-06-21 18:06:14.126] [INFO] [http-nio-30113-exec-1] [org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]] [log] [173] : Initializing Spring DispatcherServlet 'dispatcherServlet'
[mizar-cloud-demo] [$] [2021-06-21 18:06:14.127] [INFO] [http-nio-30113-exec-1] [org.springframework.web.servlet.DispatcherServlet] [initServletBean] [525] : Initializing Servlet 'dispatcherServlet'
[mizar-cloud-demo] [$] [2021-06-21 18:06:14.225] [INFO] [http-nio-30113-exec-1] [org.springframework.web.servlet.DispatcherServlet] [initServletBean] [547] : Completed initialization in 97 ms
[Pipeline] }
[Pipeline] // script
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Declarative: Post Actions)
[Pipeline] echo
success
[Pipeline] sh
- curl -s http://10.47.19.51:30006/callback/dev1/FLS-CRM-DEV_crm-mizar-demo/17/fls-crm6.1.8/success/
success
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // node
[Pipeline] End of Pipeline
Finished: SUCCESS
Started by user admin
Running in Durability level: MAX_SURVIVABILITY
[Pipeline] Start of Pipeline
[Pipeline] node
Running on node2 in /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo
[Pipeline] {
[Pipeline] withEnv
[Pipeline] {
[Pipeline] stage
[Pipeline] { (DownloadCode)
[Pipeline] checkout
using credential test
Fetching changes from the remote Git repository
Cleaning workspace
/usr/bin/git rev-parse --is-inside-work-tree # timeout=10
/usr/bin/git config remote.origin.url ssh://git@code.paic.com.cn:8006/git/mizar_cloud.git # timeout=10
/usr/bin/git rev-parse --verify HEAD # timeout=10
Resetting working tree
/usr/bin/git reset --hard # timeout=10
/usr/bin/git clean -fdx # timeout=10
Fetching upstream changes from ssh://git@code.paic.com.cn:8006/git/mizar_cloud.git
/usr/bin/git --version # timeout=10
using GIT_ASKPASS to set credentials
/usr/bin/git fetch --tags --progress ssh://git@code.paic.com.cn:8006/git/mizar_cloud.git +refs/heads/:refs/remotes/origin/ # timeout=10
Checking out Revision 7e358cb5e98a8037abf767b12b9a56516f336d17 (origin/master)
Commit message: "FLS-CRM#11030 数据源接入"
/usr/bin/git rev-parse origin/master^{commit} # timeout=10
/usr/bin/git config core.sparsecheckout # timeout=10
/usr/bin/git checkout -f 7e358cb5e98a8037abf767b12b9a56516f336d17 # timeout=10
/usr/bin/git rev-list --no-walk 7e358cb5e98a8037abf767b12b9a56516f336d17 # timeout=10
[Pipeline] script
[Pipeline] {
[Pipeline] sh
- cd code
- git rev-parse HEAD
- cut -c 1-8
[Pipeline] sh- echo 7e358cb5
7e358cb5
[Pipeline] }
[Pipeline] // script
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (MavenBuild)
[Pipeline] sh- cd code
- mvn clean package -DskipTests=true
[INFO] Scanning for projects...
[WARNING]
[WARNING] Some problems were encountered while building the effective model for com.pingan.mizar.cloud:mizar-cloud-demo:jar:1.0-SNAPSHOT
[WARNING] 'build.plugins.plugin.version' for org.springframework.boot:spring-boot-maven-plugin is missing. @ line 61, column 21
[WARNING]
[WARNING] Some problems were encountered while building the effective model for com.pingan.mizar.cloud:mizar-cloud-support-redis:jar:1.0-SNAPSHOT
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-surefire-plugin is missing. @ line 47, column 21
[WARNING]
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING]
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING]
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO]
[INFO] pafa-cloud-dependencies [pom]
[INFO] mizar-cloud-parent [pom]
[INFO] mizar-cloud-core [jar]
[INFO] mizar-cloud-support-config [jar]
[INFO] mizar-cloud-support-redis [jar]
[INFO] mizar-cloud-support-db [jar]
[INFO] mizar-cloud-log [jar]
[INFO] mizar-cloud-demo [jar]
[INFO] mizar-cloud-messages [jar]
[INFO]
[INFO] ----------< com.pingan.mizar.cloud:mizar-cloud-dependencies >-----------
[INFO] Building pafa-cloud-dependencies 1.10.0.RELEASE [1/9]
[INFO] --------------------------------[ pom ]---------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ mizar-cloud-dependencies ---
[INFO]
[INFO] -----------< com.pingan.mizar.cloud:com.pingan.mizar.cloud >------------
[INFO] Building mizar-cloud-parent 1.0-SNAPSHOT [2/9]
[INFO] --------------------------------[ pom ]---------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ com.pingan.mizar.cloud ---
[INFO]
[INFO] --------------< com.pingan.mizar.cloud:mizar-cloud-core >---------------
[INFO] Building mizar-cloud-core 1.0-SNAPSHOT [3/9]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ mizar-cloud-core ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ mizar-cloud-core ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ mizar-cloud-core ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 26 source files to /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-core/target/classes
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ mizar-cloud-core ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-core/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ mizar-cloud-core ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ mizar-cloud-core ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ mizar-cloud-core ---
[INFO] Building jar: /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-core/target/mizar-cloud-core.jar
[INFO]
[INFO] ---------< com.pingan.mizar.cloud:mizar-cloud-support-config >----------
[INFO] Building mizar-cloud-support-config 1.0-SNAPSHOT [4/9]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ mizar-cloud-support-config ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ mizar-cloud-support-config ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ mizar-cloud-support-config ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ mizar-cloud-support-config ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-support-config/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ mizar-cloud-support-config ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ mizar-cloud-support-config ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ mizar-cloud-support-config ---
[INFO] Building jar: /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-support-config/target/mizar-cloud-demo.jar
[INFO]
[INFO] ----------< com.pingan.mizar.cloud:mizar-cloud-support-redis >----------
[INFO] Building mizar-cloud-support-redis 1.0-SNAPSHOT [5/9]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ mizar-cloud-support-redis ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ mizar-cloud-support-redis ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ mizar-cloud-support-redis ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 9 source files to /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-support-redis/target/classes
[INFO] /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-support-redis/src/main/java/com/pingan/mizar/cloud/redis/listener/ListenerRegister.java: /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-support-redis/src/main/java/com/pingan/mizar/cloud/redis/listener/ListenerRegister.java uses unchecked or unsafe operations.
[INFO] /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-support-redis/src/main/java/com/pingan/mizar/cloud/redis/listener/ListenerRegister.java: Recompile with -Xlint:unchecked for details.
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ mizar-cloud-support-redis ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-support-redis/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ mizar-cloud-support-redis ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ mizar-cloud-support-redis ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ mizar-cloud-support-redis ---
[INFO] Building jar: /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-support-redis/target/mizar-cloud-demo.jar
[INFO]
[INFO] -----------< com.pingan.mizar.cloud:mizar-cloud-support-db >------------
[INFO] Building mizar-cloud-support-db 1.0-SNAPSHOT [6/9]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ mizar-cloud-support-db ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ mizar-cloud-support-db ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ mizar-cloud-support-db ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 11 source files to /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-support-db/target/classes
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ mizar-cloud-support-db ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-support-db/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ mizar-cloud-support-db ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ mizar-cloud-support-db ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ mizar-cloud-support-db ---
[INFO] Building jar: /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-support-db/target/mizar-cloud-demo.jar
[INFO]
[INFO] ---------------< com.pingan.mizar.cloud:mizar-cloud-log >---------------
[INFO] Building mizar-cloud-log 1.0-SNAPSHOT [7/9]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ mizar-cloud-log ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ mizar-cloud-log ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-log/src/main/java
[INFO] Copying 1 resource
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ mizar-cloud-log ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ mizar-cloud-log ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-log/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ mizar-cloud-log ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ mizar-cloud-log ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ mizar-cloud-log ---
[INFO] Building jar: /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-log/target/mizar-cloud-demo.jar
[INFO]
[INFO] --------------< com.pingan.mizar.cloud:mizar-cloud-demo >---------------
[INFO] Building mizar-cloud-demo 1.0-SNAPSHOT [8/9]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ mizar-cloud-demo ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ mizar-cloud-demo ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ mizar-cloud-demo ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 8 source files to /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-demo/target/classes
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ mizar-cloud-demo ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-demo/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ mizar-cloud-demo ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ mizar-cloud-demo ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ mizar-cloud-demo ---
[INFO] Building jar: /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-demo/target/mizar-cloud-demo.jar
[INFO]
[INFO] --- spring-boot-maven-plugin:2.3.11.RELEASE:repackage (default) @ mizar-cloud-demo ---
[INFO] Replacing main artifact with repackaged archive
[INFO]
[INFO] ------------< com.pingan.mizar.cloud:mizar-cloud-messages >-------------
[INFO] Building mizar-cloud-messages 1.0-SNAPSHOT [9/9]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ mizar-cloud-messages ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ mizar-cloud-messages ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-messages/src/main/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ mizar-cloud-messages ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ mizar-cloud-messages ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-messages/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ mizar-cloud-messages ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ mizar-cloud-messages ---
[INFO] Tests are skipped.
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ mizar-cloud-messages ---
[WARNING] JAR will be empty - no content was marked for inclusion!
[INFO] Building jar: /data/jenkins/workspace/FLS-CRM-DEV_crm-mizar-demo/code/mizar-cloud-messages/target/mizar-cloud-demo.jar
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] pafa-cloud-dependencies 1.10.0.RELEASE ............. SUCCESS [ 0.113 s]
[INFO] mizar-cloud-parent 1.0-SNAPSHOT .................... SUCCESS [ 0.004 s]
[INFO] mizar-cloud-core 1.0-SNAPSHOT ...................... SUCCESS [ 2.916 s]
[INFO] mizar-cloud-support-config 1.0-SNAPSHOT ............ SUCCESS [ 0.134 s]
[INFO] mizar-cloud-support-redis 1.0-SNAPSHOT ............. SUCCESS [ 1.030 s]
[INFO] mizar-cloud-support-db 1.0-SNAPSHOT ................ SUCCESS [ 0.955 s]
[INFO] mizar-cloud-log 1.0-SNAPSHOT ....................... SUCCESS [ 0.052 s]
[INFO] mizar-cloud-demo 1.0-SNAPSHOT ...................... SUCCESS [ 1.596 s]
[INFO] mizar-cloud-messages 1.0-SNAPSHOT .................. SUCCESS [ 0.052 s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 7.390 s
[INFO] Finished at: 2021-06-21T18:02:49+08:00
[INFO] ------------------------------------------------------------------------
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Environment Init)
[Pipeline] sh- echo $'\345\210\235\345\247\213\345\214\226\347\216\257\345\242\203'
初始化环境
[Pipeline] sh- /bin/cp -rf /data/pipelinebuild/crm-mizar-demo/k8s_dev.yaml ./17.yaml
[Pipeline] sh- /bin/cp -rf /data/pipelinebuild/crm-mizar-demo/Dockerfile_dev ./Dockerfile
[Pipeline] script
[Pipeline] {
[Pipeline] echo
deploy dev1
[Pipeline] echo
appdenv is STG
[Pipeline] echo
appdenvcluster is default
[Pipeline] echo
images is hub.yun.paic.com.cn/crmstg/crm-mizar-demo:7e358cb5
[Pipeline] sh- sed -i s#PACKAGE_PATH#mizar-cloud-demo/target/mizar-cloud-demo.jar# Dockerfile
[Pipeline] sh- sed -i s/APP_PORT/30113/ 17.yaml
[Pipeline] sh- sed -i s/PROJECT_NS/FLS-IVS-SERVICE-SPRINGBOOT-APP-GATEWAY3/ 17.yaml
[Pipeline] sh- sed -i s/NAMESPACESTG/fls-crm/ 17.yaml
[Pipeline] sh- sed -i s/TemplateProject/crm-mizar-demo-dev1/ 17.yaml
[Pipeline] sh- sed -i s/NodeSelector/cx/ 17.yaml
[Pipeline] sh- sed -i s#ProjectImage#hub.yun.paic.com.cn/crmstg/crm-mizar-demo:7e358cb5# 17.yaml
[Pipeline] sh- sed -i s#Logdir#/data/logs/dev1# 17.yaml
[Pipeline] sh- sed -i s/REP/1/ 17.yaml
[Pipeline] sh- sed -i s/ENV/dev1/ 17.yaml
[Pipeline] sh- sed -i s/appdenv/STG/ 17.yaml
[Pipeline] sh- sed -i s/appcenv/default/ 17.yaml
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] }
[Pipeline] // script
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Build Image)
[Pipeline] script
[Pipeline] {
[Pipeline] echo
build image
[Pipeline] sh- docker build -t hub.yun.paic.com.cn/crmstg/crm-mizar-demo:7e358cb5 .
Sending build context to Docker daemon 69.64MB
Step 1/6 : FROM hub.yun.paic.com.cn/wzlstg/pazl-esign-server:base
---> ffaa932acd68
Step 2/6 : MAINTAINER by mahaojun
---> Using cache
---> 610ede0ad03d
Step 3/6 : RUN cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
---> Using cache
---> b5a4b4e9d032
Step 4/6 : COPY code/mizar-cloud-demo/target/mizar-cloud-demo.jar /wls/wls81/app/app.jar
---> a76070d0164c
Step 5/6 : WORKDIR /wls/wls81
---> Running in 1dfc4dc01947
Removing intermediate container 1dfc4dc01947
---> d80ced827b1b
Step 6/6 : CMD ["/run.sh"]
---> Running in f5cb05b6ca73
Removing intermediate container f5cb05b6ca73
---> cccb06c0777f
Successfully built cccb06c0777f
Successfully tagged hub.yun.paic.com.cn/crmstg/crm-mizar-demo:7e358cb5
[Pipeline] }
[Pipeline] // script
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Push Image)
[Pipeline] script
[Pipeline] {
[Pipeline] echo
push image
[Pipeline] sh
- docker push hub.yun.paic.com.cn/crmstg/crm-mizar-demo:7e358cb5
The push refers to repository [hub.yun.paic.com.cn/crmstg/crm-mizar-demo]
7ccd071ffd4c: Preparing
551c98fd9c1b: Preparing
2f82a0c64dd1: Preparing
7ec1e9cc8c16: Preparing
c2f0be5dfcec: Preparing
ec0b9136b9ff: Preparing
d608045dfcca: Preparing
2ccf967b3f2a: Preparing
a1ce7c1975a6: Preparing
ec3aa562dc88: Preparing
479c111db1ea: Preparing
5f70bf18a086: Preparing
5f70bf18a086: Preparing
5f70bf18a086: Preparing
5f70bf18a086: Preparing
dc44cf6f74b6: Preparing
5f70bf18a086: Preparing
ec3aa562dc88: Waiting
d608045dfcca: Waiting
dc44cf6f74b6: Waiting
479c111db1ea: Waiting
5f70bf18a086: Waiting
2ccf967b3f2a: Waiting
a1ce7c1975a6: Waiting
c2f0be5dfcec: Mounted from wzlstg/pazl-sf-gw
7ec1e9cc8c16: Mounted from wzlstg/pazl-sf-gw
551c98fd9c1b: Mounted from mdpstg/fls-mdp-wechat-admin
2f82a0c64dd1: Mounted from wzlstg/pazl-sf-gw
2ccf967b3f2a: Layer already exists
d608045dfcca: Layer already exists
a1ce7c1975a6: Layer already exists
ec3aa562dc88: Layer already exists
479c111db1ea: Layer already exists
5f70bf18a086: Layer already exists
dc44cf6f74b6: Layer already exists
ec0b9136b9ff: Mounted from wzlstg/pazl-sf-gw
7ccd071ffd4c: Pushed
7e358cb5: digest: sha256:214afae6d18434f503c96a3925fc4fb28cf892dd7c7c9b67e36abb6ab9fa042f size: 3866
[Pipeline] }
[Pipeline] // script
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Deploy)
[Pipeline] script
[Pipeline] {
[Pipeline] sh - echo Deploy
Deploy
[Pipeline] sh - kubectl config use-context kubernetes-admin@kubernetes
Switched to context "kubernetes-admin@kubernetes".
[Pipeline] sh - kubectl apply -f 17.yaml --record
deployment.extensions/crm-mizar-demo-dev1 configured
service/crm-mizar-demo-dev1-service configured
[Pipeline] }
[Pipeline] // script
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Pod Check)
[Pipeline] sleep
Sleeping for 30 sec
[Pipeline] script
[Pipeline] {
[Pipeline] echo
检查部署pod状态
[Pipeline] sh -
/data/pipelinebuild/devops-script/pod_status.sh
crm-mizar-demo-dev1
fls-crm
1
FLS-CRM-DEV_crm-mizar-demo
sleep 10
Running
Running
Running
sleep 90
the application successfully deployedcrm-mizar-demo-dev1-79bc9ff88-22cqt 1/1 Running 0 94s 30.123.18.252 30.123.18.252 <none> <none>
启动日志如下
2021-06-21 18:04:59 INFO Loading TraceMetadataProviders
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.activemq.client.ActiveMQClientTraceMetadataProvider name:com.navercorp.pinpoint.plugin.activemq.client.ActiveMQClientTraceMetadataProvider@567d299b
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.arcus.ArcusTypeProvider name:com.navercorp.pinpoint.plugin.arcus.ArcusTypeProvider@574caa3f
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.asynchronous.AsynchronousTraceMetadataProvider name:com.navercorp.pinpoint.plugin.asynchronous.AsynchronousTraceMetadataProvider@6c629d6e
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.cassandra.CassandraTypeProvider name:com.navercorp.pinpoint.plugin.cassandra.CassandraTypeProvider@27abe2cd
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.commons.dbcp.CommonsDbcpMetadataProvider name:com.navercorp.pinpoint.plugin.commons.dbcp.CommonsDbcpMetadataProvider@51016012
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.commons.dbcp2.CommonsDbcp2MetadataProvider name:com.navercorp.pinpoint.plugin.commons.dbcp2.CommonsDbcp2MetadataProvider@1517365b
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.jdbc.cubrid.CubridTypeProvider name:com.navercorp.pinpoint.plugin.jdbc.cubrid.CubridTypeProvider@60215eee
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.cxf.CxfPluginTraceMetadataProvider name:com.navercorp.pinpoint.plugin.cxf.CxfPluginTraceMetadataProvider@61baa894
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.dubbo.DubboTraceMetadataProvider name:com.navercorp.pinpoint.plugin.dubbo.DubboTraceMetadataProvider@490d6c15
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.google.httpclient.HttpClientTypeProvider name:com.navercorp.pinpoint.plugin.google.httpclient.HttpClientTypeProvider@5479e3f
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.gson.GsonMetadataProvider name:com.navercorp.pinpoint.plugin.gson.GsonMetadataProvider@7bfcd12c
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.hikaricp.HikariCpMetadataProvider name:com.navercorp.pinpoint.plugin.hikaricp.HikariCpMetadataProvider@5b1d2887
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.httpclient3.HttpClient3TypeProvider name:com.navercorp.pinpoint.plugin.httpclient3.HttpClient3TypeProvider@18e8568
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.httpclient4.HttpClient4TypeProvider name:com.navercorp.pinpoint.plugin.httpclient4.HttpClient4TypeProvider@270421f5
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.hystrix.HystrixTraceMetadataProvider name:com.navercorp.pinpoint.plugin.hystrix.HystrixTraceMetadataProvider@18ef96
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.ibatis.IBatisMetadataProvider name:com.navercorp.pinpoint.plugin.ibatis.IBatisMetadataProvider@6aceb1a5
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.jackson.JacksonTypeProvider name:com.navercorp.pinpoint.plugin.jackson.JacksonTypeProvider@12bc6874
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.jboss.JbossTypeProvider name:com.navercorp.pinpoint.plugin.jboss.JbossTypeProvider@1ef7fe8e
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.jdk.http.JdkHttpTypeProvider name:com.navercorp.pinpoint.plugin.jdk.http.JdkHttpTypeProvider@5d3411d
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.jetty.JettyTypeProvider name:com.navercorp.pinpoint.plugin.jetty.JettyTypeProvider@6979e8cb
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.json_lib.JsonLibTypeProvider name:com.navercorp.pinpoint.plugin.json_lib.JsonLibTypeProvider@2be94b0f
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.jsp.JspTypeProvider name:com.navercorp.pinpoint.plugin.jsp.JspTypeProvider@50675690
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.jdbc.jtds.JtdsTypeProvider name:com.navercorp.pinpoint.plugin.jdbc.jtds.JtdsTypeProvider@47d384ee
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.kafka.KafkaMetadataProvider name:com.navercorp.pinpoint.plugin.kafka.KafkaMetadataProvider@3930015a
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.jdbc.mariadb.MariaDBTypeProvider name:com.navercorp.pinpoint.plugin.jdbc.mariadb.MariaDBTypeProvider@224aed64
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.mybatis.MyBatisMetadataProvider name:com.navercorp.pinpoint.plugin.mybatis.MyBatisMetadataProvider@2ac1fdc4
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.jdbc.mysql.MySqlTypeProvider name:com.navercorp.pinpoint.plugin.jdbc.mysql.MySqlTypeProvider@50cbc42f
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.netty.NettyMetadataProvider name:com.navercorp.pinpoint.plugin.netty.NettyMetadataProvider@13b6d03
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.ning.asynchttpclient.NingAsyncHttpClientMetadataProvider name:com.navercorp.pinpoint.plugin.ning.asynchttpclient.NingAsyncHttpClientMetadataProvider@64c64813
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.okhttp.OkHttpTypeProvider name:com.navercorp.pinpoint.plugin.okhttp.OkHttpTypeProvider@21a06946
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.jdbc.oracle.OracleTypeProvider name:com.navercorp.pinpoint.plugin.jdbc.oracle.OracleTypeProvider@25618e91
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.jdbc.postgresql.PostgreSqlTypeProvider name:com.navercorp.pinpoint.plugin.jdbc.postgresql.PostgreSqlTypeProvider@2cfb4a64
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.redis.RedisTypeProvider name:com.navercorp.pinpoint.plugin.redis.RedisTypeProvider@2fc14f68
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.resin.ResinTraceMetadataProvider name:com.navercorp.pinpoint.plugin.resin.ResinTraceMetadataProvider@61443d8f
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.resttemplate.RestTemplateMetadataProvider name:com.navercorp.pinpoint.plugin.resttemplate.RestTemplateMetadataProvider@233c0b17
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.spring.boot.SpringBootTraceMetadataProvider name:com.navercorp.pinpoint.plugin.spring.boot.SpringBootTraceMetadataProvider@33a10788
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.spring.beans.SpringBeansTraceMetadataProvider name:com.navercorp.pinpoint.plugin.spring.beans.SpringBeansTraceMetadataProvider@47fd17e3
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.spring.web.SpringWebMvcTraceMetadataProvider name:com.navercorp.pinpoint.plugin.spring.web.SpringWebMvcTraceMetadataProvider@17d99928
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.thrift.ThriftTypeProvider name:com.navercorp.pinpoint.plugin.thrift.ThriftTypeProvider@6fffcba5
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.tomcat.TomcatTypeProvider name:com.navercorp.pinpoint.plugin.tomcat.TomcatTypeProvider@2b80d80f
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.user.UserTypeProvider name:com.navercorp.pinpoint.plugin.user.UserTypeProvider@7907ec20
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.vertx.VertxTypeProvider name:com.navercorp.pinpoint.plugin.vertx.VertxTypeProvider@546a03af
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.weblogic.WeblogicTypeProvider name:com.navercorp.pinpoint.plugin.weblogic.WeblogicTypeProvider@6ea6d14e
2021-06-21 18:04:59 INFO Loading TraceMetadataProvider: com.navercorp.pinpoint.plugin.websphere.WebsphereTypeProvider name:com.navercorp.pinpoint.plugin.websphere.WebsphereTypeProvider@725bef66
2021-06-21 18:04:59 INFO Finished loading ServiceType:
2021-06-21 18:04:59 INFO TOMCAT(1010) from com.navercorp.pinpoint.plugin.tomcat.TomcatTypeProvider
2021-06-21 18:04:59 INFO TOMCAT_METHOD(1011) from com.navercorp.pinpoint.plugin.tomcat.TomcatTypeProvider
2021-06-21 18:04:59 INFO JETTY(1030) from com.navercorp.pinpoint.plugin.jetty.JettyTypeProvider
2021-06-21 18:04:59 INFO JETTY_METHOD(1031) from com.navercorp.pinpoint.plugin.jetty.JettyTypeProvider
2021-06-21 18:04:59 INFO JBOSS(1040) from com.navercorp.pinpoint.plugin.jboss.JbossTypeProvider
2021-06-21 18:04:59 INFO JBOSS_METHOD(1041) from com.navercorp.pinpoint.plugin.jboss.JbossTypeProvider
2021-06-21 18:04:59 INFO VERTX(1050) from com.navercorp.pinpoint.plugin.vertx.VertxTypeProvider
2021-06-21 18:04:59 INFO VERTX_INTERNAL(1051) from com.navercorp.pinpoint.plugin.vertx.VertxTypeProvider
2021-06-21 18:04:59 INFO VERTX_HTTP_SERVER(1052) from com.navercorp.pinpoint.plugin.vertx.VertxTypeProvider
2021-06-21 18:04:59 INFO VERTX_HTTP_SERVER_INTERNAL(1053) from com.navercorp.pinpoint.plugin.vertx.VertxTypeProvider
2021-06-21 18:04:59 INFO WEBSPHERE(1060) from com.navercorp.pinpoint.plugin.websphere.WebsphereTypeProvider
2021-06-21 18:04:59 INFO WEBSPHERE_METHOD(1061) from com.navercorp.pinpoint.plugin.websphere.WebsphereTypeProvider
2021-06-21 18:04:59 INFO THRIFT_SERVER(1100) from com.navercorp.pinpoint.plugin.thrift.ThriftTypeProvider
2021-06-21 18:04:59 INFO THRIFT_SERVER_INTERNAL(1101) from com.navercorp.pinpoint.plugin.thrift.ThriftTypeProvider
2021-06-21 18:04:59 INFO DUBBO_PROVIDER(1110) from com.navercorp.pinpoint.plugin.dubbo.DubboTraceMetadataProvider
2021-06-21 18:04:59 INFO RESIN(1200) from com.navercorp.pinpoint.plugin.resin.ResinTraceMetadataProvider
2021-06-21 18:04:59 INFO RESIN_METHOD(1201) from com.navercorp.pinpoint.plugin.resin.ResinTraceMetadataProvider
2021-06-21 18:04:59 INFO SPRING_BOOT(1210) from com.navercorp.pinpoint.plugin.spring.boot.SpringBootTraceMetadataProvider
2021-06-21 18:04:59 INFO SAMPLE_SERVER(1900) from com.navercorp.pinpoint.plugin.asynchronous.AsynchronousTraceMetadataProvider
2021-06-21 18:04:59 INFO WEBLOGIC(1989) from com.navercorp.pinpoint.plugin.weblogic.WeblogicTypeProvider
2021-06-21 18:04:59 INFO WEBLOGIC_METHOD(1992) from com.navercorp.pinpoint.plugin.weblogic.WeblogicTypeProvider
2021-06-21 18:04:59 INFO MYSQL(2100) from com.navercorp.pinpoint.plugin.jdbc.mysql.MySqlTypeProvider
2021-06-21 18:04:59 INFO MYSQL_EXECUTE_QUERY(2101) from com.navercorp.pinpoint.plugin.jdbc.mysql.MySqlTypeProvider
2021-06-21 18:04:59 INFO MARIADB(2150) from com.navercorp.pinpoint.plugin.jdbc.mariadb.MariaDBTypeProvider
2021-06-21 18:04:59 INFO MARIADB_EXECUTE_QUERY(2151) from com.navercorp.pinpoint.plugin.jdbc.mariadb.MariaDBTypeProvider
2021-06-21 18:04:59 INFO MSSQL(2200) from com.navercorp.pinpoint.plugin.jdbc.jtds.JtdsTypeProvider
2021-06-21 18:04:59 INFO MSSQL_EXECUTE_QUERY(2201) from com.navercorp.pinpoint.plugin.jdbc.jtds.JtdsTypeProvider
2021-06-21 18:04:59 INFO ORACLE(2300) from com.navercorp.pinpoint.plugin.jdbc.oracle.OracleTypeProvider
2021-06-21 18:04:59 INFO ORACLE_EXECUTE_QUERY(2301) from com.navercorp.pinpoint.plugin.jdbc.oracle.OracleTypeProvider
2021-06-21 18:04:59 INFO CUBRID(2400) from com.navercorp.pinpoint.plugin.jdbc.cubrid.CubridTypeProvider
2021-06-21 18:04:59 INFO CUBRID_EXECUTE_QUERY(2401) from com.navercorp.pinpoint.plugin.jdbc.cubrid.CubridTypeProvider
2021-06-21 18:04:59 INFO POSTGRESQL(2500) from com.navercorp.pinpoint.plugin.jdbc.postgresql.PostgreSqlTypeProvider
2021-06-21 18:04:59 INFO POSTGRESQL_EXECUTE_QUERY(2501) from com.navercorp.pinpoint.plugin.jdbc.postgresql.PostgreSqlTypeProvider
2021-06-21 18:04:59 INFO CASSANDRA(2600) from com.navercorp.pinpoint.plugin.cassandra.CassandraTypeProvider
2021-06-21 18:04:59 INFO CASSANDRA_EXECUTE_QUERY(2601) from com.navercorp.pinpoint.plugin.cassandra.CassandraTypeProvider
2021-06-21 18:04:59 INFO JSP(5005) from com.navercorp.pinpoint.plugin.jsp.JspTypeProvider
2021-06-21 18:04:59 INFO GSON(5010) from com.navercorp.pinpoint.plugin.gson.GsonMetadataProvider
2021-06-21 18:04:59 INFO JACKSON(5011) from com.navercorp.pinpoint.plugin.jackson.JacksonTypeProvider
2021-06-21 18:04:59 INFO JSON-LIB(5012) from com.navercorp.pinpoint.plugin.json_lib.JsonLibTypeProvider
2021-06-21 18:04:59 INFO SPRING_MVC(5051) from com.navercorp.pinpoint.plugin.spring.web.SpringWebMvcTraceMetadataProvider
2021-06-21 18:04:59 INFO SPRING_BEAN(5071) from com.navercorp.pinpoint.plugin.spring.beans.SpringBeansTraceMetadataProvider
2021-06-21 18:04:59 INFO IBATIS(5500) from com.navercorp.pinpoint.plugin.ibatis.IBatisMetadataProvider
2021-06-21 18:04:59 INFO IBATIS_SPRING(5501) from com.navercorp.pinpoint.plugin.ibatis.IBatisMetadataProvider
2021-06-21 18:04:59 INFO MYBATIS(5510) from com.navercorp.pinpoint.plugin.mybatis.MyBatisMetadataProvider
2021-06-21 18:04:59 INFO DBCP(6050) from com.navercorp.pinpoint.plugin.commons.dbcp.CommonsDbcpMetadataProvider
2021-06-21 18:04:59 INFO DBCP2(6052) from com.navercorp.pinpoint.plugin.commons.dbcp2.CommonsDbcp2MetadataProvider
2021-06-21 18:04:59 INFO HIKARICP(6060) from com.navercorp.pinpoint.plugin.hikaricp.HikariCpMetadataProvider
2021-06-21 18:04:59 INFO PluginExample(7500) from com.navercorp.pinpoint.plugin.asynchronous.AsynchronousTraceMetadataProvider
2021-06-21 18:04:59 INFO MEMCACHED(8050) from com.navercorp.pinpoint.plugin.arcus.ArcusTypeProvider
2021-06-21 18:04:59 INFO MEMCACHED_FUTURE_GET(8051) from com.navercorp.pinpoint.plugin.arcus.ArcusTypeProvider
2021-06-21 18:04:59 INFO ARCUS(8100) from com.navercorp.pinpoint.plugin.arcus.ArcusTypeProvider
2021-06-21 18:04:59 INFO ARCUS_FUTURE_GET(8101) from com.navercorp.pinpoint.plugin.arcus.ArcusTypeProvider
2021-06-21 18:04:59 INFO ARCUS_EHCACHE_FUTURE_GET(8102) from com.navercorp.pinpoint.plugin.arcus.ArcusTypeProvider
2021-06-21 18:04:59 INFO REDIS(8200) from com.navercorp.pinpoint.plugin.redis.RedisTypeProvider
2021-06-21 18:04:59 INFO ACTIVEMQ_CLIENT(8310) from com.navercorp.pinpoint.plugin.activemq.client.ActiveMQClientTraceMetadataProvider
2021-06-21 18:04:59 INFO ACTIVEMQ_CLIENT_INTERNAL(8311) from com.navercorp.pinpoint.plugin.activemq.client.ActiveMQClientTraceMetadataProvider
2021-06-21 18:04:59 INFO KAFKA_CLIENT(8660) from com.navercorp.pinpoint.plugin.kafka.KafkaMetadataProvider
2021-06-21 18:04:59 INFO KAFKA_CLIENT_INTERNAL(8661) from com.navercorp.pinpoint.plugin.kafka.KafkaMetadataProvider
2021-06-21 18:04:59 INFO HTTP_CLIENT_3(9050) from com.navercorp.pinpoint.plugin.httpclient3.HttpClient3TypeProvider
2021-06-21 18:04:59 INFO HTTP_CLIENT_3_INTERNAL(9051) from com.navercorp.pinpoint.plugin.httpclient3.HttpClient3TypeProvider
2021-06-21 18:04:59 INFO HTTP_CLIENT_4(9052) from com.navercorp.pinpoint.plugin.httpclient4.HttpClient4TypeProvider
2021-06-21 18:04:59 INFO HTTP_CLIENT_4_INTERNAL(9053) from com.navercorp.pinpoint.plugin.httpclient4.HttpClient4TypeProvider
2021-06-21 18:04:59 INFO GOOGLE_HTTP_CLIENT_INTERNAL(9054) from com.navercorp.pinpoint.plugin.google.httpclient.HttpClientTypeProvider
2021-06-21 18:04:59 INFO JDK_HTTPURLCONNECTOR(9055) from com.navercorp.pinpoint.plugin.jdk.http.JdkHttpTypeProvider
2021-06-21 18:04:59 INFO ASYNC_HTTP_CLIENT(9056) from com.navercorp.pinpoint.plugin.ning.asynchttpclient.NingAsyncHttpClientMetadataProvider
2021-06-21 18:04:59 INFO ASYNC_HTTP_CLIENT_INTERNAL(9057) from com.navercorp.pinpoint.plugin.ning.asynchttpclient.NingAsyncHttpClientMetadataProvider
2021-06-21 18:04:59 INFO OK_HTTP_CLIENT(9058) from com.navercorp.pinpoint.plugin.okhttp.OkHttpTypeProvider
2021-06-21 18:04:59 INFO OK_HTTP_CLIENT_INTERNAL(9059) from com.navercorp.pinpoint.plugin.okhttp.OkHttpTypeProvider
2021-06-21 18:04:59 INFO CXF_CLIENT(9080) from com.navercorp.pinpoint.plugin.cxf.CxfPluginTraceMetadataProvider
2021-06-21 18:04:59 INFO THRIFT_CLIENT(9100) from com.navercorp.pinpoint.plugin.thrift.ThriftTypeProvider
2021-06-21 18:04:59 INFO THRIFT_CLIENT_INTERNAL(9101) from com.navercorp.pinpoint.plugin.thrift.ThriftTypeProvider
2021-06-21 18:04:59 INFO DUBBO_CONSUMER(9110) from com.navercorp.pinpoint.plugin.dubbo.DubboTraceMetadataProvider
2021-06-21 18:04:59 INFO HYSTRIX_COMMAND(9120) from com.navercorp.pinpoint.plugin.hystrix.HystrixTraceMetadataProvider
2021-06-21 18:04:59 INFO HYSTRIX_COMMAND_INTERNAL(9121) from com.navercorp.pinpoint.plugin.hystrix.HystrixTraceMetadataProvider
2021-06-21 18:04:59 INFO VERTX_HTTP_CLIENT(9130) from com.navercorp.pinpoint.plugin.vertx.VertxTypeProvider
2021-06-21 18:04:59 INFO VERTX_HTTP_CLIENT_INTERNAL(9131) from com.navercorp.pinpoint.plugin.vertx.VertxTypeProvider
2021-06-21 18:04:59 INFO REST_TEMPLATE(9140) from com.navercorp.pinpoint.plugin.resttemplate.RestTemplateMetadataProvider
2021-06-21 18:04:59 INFO NETTY(9150) from com.navercorp.pinpoint.plugin.netty.NettyMetadataProvider
2021-06-21 18:04:59 INFO NETTY_INTERNAL(9151) from com.navercorp.pinpoint.plugin.netty.NettyMetadataProvider
2021-06-21 18:04:59 INFO NETTY_HTTP(9152) from com.navercorp.pinpoint.plugin.netty.NettyMetadataProvider
2021-06-21 18:04:59 INFO SAMPLE_CLIENT(9901) from com.navercorp.pinpoint.plugin.asynchronous.AsynchronousTraceMetadataProvider
2021-06-21 18:04:59 INFO Finished loading AnnotationKeys:
2021-06-21 18:04:59 INFO thrift.url(80) from com.navercorp.pinpoint.plugin.thrift.ThriftTypeProvider
2021-06-21 18:04:59 INFO thrift.args(81) from com.navercorp.pinpoint.plugin.thrift.ThriftTypeProvider
2021-06-21 18:04:59 INFO thrift.result(82) from com.navercorp.pinpoint.plugin.thrift.ThriftTypeProvider
2021-06-21 18:04:59 INFO dubbo.args(90) from com.navercorp.pinpoint.plugin.dubbo.DubboTraceMetadataProvider
2021-06-21 18:04:59 INFO dubbo.result(91) from com.navercorp.pinpoint.plugin.dubbo.DubboTraceMetadataProvider
2021-06-21 18:04:59 INFO activemq.broker.address(101) from com.navercorp.pinpoint.plugin.activemq.client.ActiveMQClientTraceMetadataProvider
2021-06-21 18:04:59 INFO activemq.message(102) from com.navercorp.pinpoint.plugin.activemq.client.ActiveMQClientTraceMetadataProvider
2021-06-21 18:04:59 INFO hystrix.command(110) from com.navercorp.pinpoint.plugin.hystrix.HystrixTraceMetadataProvider
2021-06-21 18:04:59 INFO hystrix.command.execution(111) from com.navercorp.pinpoint.plugin.hystrix.HystrixTraceMetadataProvider
2021-06-21 18:04:59 INFO hystrix.command.fallback.cause(112) from com.navercorp.pinpoint.plugin.hystrix.HystrixTraceMetadataProvider
2021-06-21 18:04:59 INFO netty.address(120) from com.navercorp.pinpoint.plugin.netty.NettyMetadataProvider
2021-06-21 18:04:59 INFO kafka.topic(140) from com.navercorp.pinpoint.plugin.kafka.KafkaMetadataProvider
2021-06-21 18:04:59 INFO kafka.partition(141) from com.navercorp.pinpoint.plugin.kafka.KafkaMetadataProvider
2021-06-21 18:04:59 INFO kafka.offset(142) from com.navercorp.pinpoint.plugin.kafka.KafkaMetadataProvider
2021-06-21 18:04:59 INFO cxf.operation(200) from com.navercorp.pinpoint.plugin.cxf.CxfPluginTraceMetadataProvider
2021-06-21 18:04:59 INFO cxf.args(201) from com.navercorp.pinpoint.plugin.cxf.CxfPluginTraceMetadataProvider
2021-06-21 18:04:59 INFO MY_ARGUMENT(995) from com.navercorp.pinpoint.plugin.asynchronous.AsynchronousTraceMetadataProvider
2021-06-21 18:04:59 INFO MY_PROCEDURE(996) from com.navercorp.pinpoint.plugin.asynchronous.AsynchronousTraceMetadataProvider
2021-06-21 18:04:59 INFO MY_RESULT(997) from com.navercorp.pinpoint.plugin.asynchronous.AsynchronousTraceMetadataProvider
2021-06-21 18:04:59 INFO MyValue(998) from com.navercorp.pinpoint.plugin.asynchronous.AsynchronousTraceMetadataProvider
2021-06-21 18:04:59 INFO gson.json.length(9000) from com.navercorp.pinpoint.plugin.gson.GsonMetadataProvider
2021-06-21 18:04:59 INFO jackson.json.length(9001) from com.navercorp.pinpoint.plugin.jackson.JacksonTypeProvider
2021-06-21 18:04:59 INFO json-lib.json.length(9002) from com.navercorp.pinpoint.plugin.json_lib.JsonLibTypeProvider
2021-06-21 18:04:59 INFO add Default ServiceType:UNDEFINED
2021-06-21 18:04:59 INFO add Default ServiceType:UNKNOWN
2021-06-21 18:04:59 INFO add Default ServiceType:USER
2021-06-21 18:04:59 INFO add Default ServiceType:UNKNOWN_GROUP
2021-06-21 18:04:59 INFO add Default ServiceType:TEST
2021-06-21 18:04:59 INFO add Default ServiceType:COLLECTOR
2021-06-21 18:04:59 INFO add Default ServiceType:ASYNC
2021-06-21 18:04:59 INFO add Default ServiceType:STAND_ALONE
2021-06-21 18:04:59 INFO add Default ServiceType:TEST_STAND_ALONE
2021-06-21 18:04:59 INFO add Default ServiceType:UNAUTHORIZED
2021-06-21 18:04:59 INFO add Default ServiceType:UNKNOWN_DB
2021-06-21 18:04:59 INFO add Default ServiceType:UNKNOWN_DB
2021-06-21 18:04:59 INFO add Default ServiceType:INTERNAL_METHOD
2021-06-21 18:04:59 INFO add Default ServiceType:SPRING
2021-06-21 18:04:59 INFO add Default ServiceType:SPRING
2021-06-21 18:04:59 INFO add Plugin ServiceType:ACTIVEMQ_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:ACTIVE_MQ_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:ARCUS
2021-06-21 18:04:59 INFO add Plugin ServiceType:ARCUS
2021-06-21 18:04:59 INFO add Plugin ServiceType:ARCUS-EHCACHE
2021-06-21 18:04:59 INFO add Plugin ServiceType:MEMCACHED
2021-06-21 18:04:59 INFO add Plugin ServiceType:MEMCACHED
2021-06-21 18:04:59 INFO add Plugin ServiceType:PluginExample
2021-06-21 18:04:59 INFO add Plugin ServiceType:SAMPLE_SERVER
2021-06-21 18:04:59 INFO add Plugin ServiceType:SAMPLE_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:CASSANDRA
2021-06-21 18:04:59 INFO add Plugin ServiceType:CASSANDRA
2021-06-21 18:04:59 INFO add Plugin ServiceType:DBCP
2021-06-21 18:04:59 INFO add Plugin ServiceType:DBCP2
2021-06-21 18:04:59 INFO add Plugin ServiceType:CUBRID
2021-06-21 18:04:59 INFO add Plugin ServiceType:CUBRID
2021-06-21 18:04:59 INFO add Plugin ServiceType:CXF_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:DUBBO_PROVIDER
2021-06-21 18:04:59 INFO add Plugin ServiceType:DUBBO_CONSUMER
2021-06-21 18:04:59 INFO add Plugin ServiceType:GOOGLE_HTTP_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:GSON
2021-06-21 18:04:59 INFO add Plugin ServiceType:HIKARICP
2021-06-21 18:04:59 INFO add Plugin ServiceType:HTTP_CLIENT_3
2021-06-21 18:04:59 INFO add Plugin ServiceType:HTTP_CLIENT_3
2021-06-21 18:04:59 INFO add Plugin ServiceType:HTTP_CLIENT_4
2021-06-21 18:04:59 INFO add Plugin ServiceType:HTTP_CLIENT_4
2021-06-21 18:04:59 INFO add Plugin ServiceType:HYSTRIX_COMMAND
2021-06-21 18:04:59 INFO add Plugin ServiceType:HYSTRIX_COMMAND
2021-06-21 18:04:59 INFO add Plugin ServiceType:IBATIS
2021-06-21 18:04:59 INFO add Plugin ServiceType:IBATIS
2021-06-21 18:04:59 INFO add Plugin ServiceType:JACKSON
2021-06-21 18:04:59 INFO add Plugin ServiceType:JBOSS
2021-06-21 18:04:59 INFO add Plugin ServiceType:JBOSS_METHOD
2021-06-21 18:04:59 INFO add Plugin ServiceType:JDK_HTTPCONNECTOR
2021-06-21 18:04:59 INFO add Plugin ServiceType:JETTY
2021-06-21 18:04:59 INFO add Plugin ServiceType:JETTY_METHOD
2021-06-21 18:04:59 INFO add Plugin ServiceType:JSON-LIB
2021-06-21 18:04:59 INFO add Plugin ServiceType:JSP
2021-06-21 18:04:59 INFO add Plugin ServiceType:MSSQLSERVER
2021-06-21 18:04:59 INFO add Plugin ServiceType:MSSQLSERVER
2021-06-21 18:04:59 INFO add Plugin ServiceType:KAFKA_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:KAFKA_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:MARIADB
2021-06-21 18:04:59 INFO add Plugin ServiceType:MARIADB
2021-06-21 18:04:59 INFO add Plugin ServiceType:MYBATIS
2021-06-21 18:04:59 INFO add Plugin ServiceType:MYSQL
2021-06-21 18:04:59 INFO add Plugin ServiceType:MYSQL
2021-06-21 18:04:59 INFO add Plugin ServiceType:NETTY
2021-06-21 18:04:59 INFO add Plugin ServiceType:NETTY_INTERNAL
2021-06-21 18:04:59 INFO add Plugin ServiceType:NETTY_HTTP
2021-06-21 18:04:59 INFO add Plugin ServiceType:ASYNC_HTTP_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:ASYNC_HTTP_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:OK_HTTP_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:OK_HTTP_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:ORACLE
2021-06-21 18:04:59 INFO add Plugin ServiceType:ORACLE
2021-06-21 18:04:59 INFO add Plugin ServiceType:POSTGRESQL
2021-06-21 18:04:59 INFO add Plugin ServiceType:POSTGRESQL
2021-06-21 18:04:59 INFO add Plugin ServiceType:REDIS
2021-06-21 18:04:59 INFO add Plugin ServiceType:RESIN
2021-06-21 18:04:59 INFO add Plugin ServiceType:RESIN_METHOD
2021-06-21 18:04:59 INFO add Plugin ServiceType:REST_TEMPLATE
2021-06-21 18:04:59 INFO add Plugin ServiceType:SPRING_BOOT
2021-06-21 18:04:59 INFO add Plugin ServiceType:SPRING_BEAN
2021-06-21 18:04:59 INFO add Plugin ServiceType:SPRING
2021-06-21 18:04:59 INFO add Plugin ServiceType:THRIFT_SERVER
2021-06-21 18:04:59 INFO add Plugin ServiceType:THRIFT_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:THRIFT_SERVER
2021-06-21 18:04:59 INFO add Plugin ServiceType:THRIFT_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:TOMCAT
2021-06-21 18:04:59 INFO add Plugin ServiceType:TOMCAT_METHOD
2021-06-21 18:04:59 INFO add Plugin ServiceType:VERTX
2021-06-21 18:04:59 INFO add Plugin ServiceType:VERTX
2021-06-21 18:04:59 INFO add Plugin ServiceType:VERTX_HTTP_SERVER
2021-06-21 18:04:59 INFO add Plugin ServiceType:VERTX_HTTP_SERVER
2021-06-21 18:04:59 INFO add Plugin ServiceType:VERTX_HTTP_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:VERTX_HTTP_CLIENT
2021-06-21 18:04:59 INFO add Plugin ServiceType:WEBLOGIC
2021-06-21 18:04:59 INFO add Plugin ServiceType:WEBLOGIC_METHOD
2021-06-21 18:04:59 INFO add Plugin ServiceType:WEBSPHERE
2021-06-21 18:04:59 INFO add Plugin ServiceType:WEBSPHERE_METHOD
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=12, name='API}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=13, name='API-METADATA}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=14, name='RETURN_DATA}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=10015, name='API-TAG}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=10000010, name='API-METADATA-ERROR}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=10000011, name='API-METADATA-AGENT-INFO-NOT-FOUND}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=10000012, name='API-METADATA-IDENTIFIER-CHECK_ERROR}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=10000013, name='API-METADATA-NOT-FOUND}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=10000014, name='API-METADATA-DID-COLLSION}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=20, name='SQL-ID}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=21, name='SQL}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=22, name='SQL-METADATA}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=23, name='SQL-PARAM}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=24, name='SQL-BindValue}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=30, name='STRING_ID}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=40, name='http.url}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=41, name='http.param}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=42, name='http.entity}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=45, name='http.cookie}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=46, name='http.status.code}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=48, name='http.internal.display}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=49, name='http.io}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=100, name='message.queue.url}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-1, name='args[0]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-2, name='args[1]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-3, name='args[2]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-4, name='args[3]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-5, name='args[4]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-6, name='args[5]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-7, name='args[6]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-8, name='args[7]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-9, name='args[8]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-10, name='args[9]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-11, name='args[N]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-30, name='cached_args[0]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-31, name='cached_args[1]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-32, name='cached_args[2]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-33, name='cached_args[3]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-34, name='cached_args[4]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-35, name='cached_args[5]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-36, name='cached_args[6]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-37, name='cached_args[7]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-38, name='cached_args[8]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-39, name='cached_args[9]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-40, name='cached_args[N]}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-50, name='Exception}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-51, name='ExceptionClass}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-9999, name='UNKNOWN}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=-100, name='Asynchronous Invocation}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=300, name='PROXY_HTTP_HEADER}
2021-06-21 18:04:59 INFO add Default AnnotationKey:AnnotationKey{code=310, name='redis.io}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=101, name='activemq.broker.address}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=102, name='activemq.message}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=998, name='MyValue}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=996, name='MY_PROCEDURE}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=995, name='MY_ARGUMENT}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=997, name='MY_RESULT}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=200, name='cxf.operation}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=201, name='cxf.args}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=90, name='dubbo.args}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=91, name='dubbo.result}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=9000, name='gson.json.length}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=110, name='hystrix.command}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=111, name='hystrix.command.execution}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=112, name='hystrix.command.fallback.cause}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=9001, name='jackson.json.length}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=9002, name='json-lib.json.length}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=140, name='kafka.topic}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=141, name='kafka.partition}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=142, name='kafka.offset}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=120, name='netty.address}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=80, name='thrift.url}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=81, name='thrift.args}
2021-06-21 18:04:59 INFO add Plugin AnnotationKey:AnnotationKey{code=82, name='thrift.result}
2021-06-21 18:04:59 INFO profiler.enable=true
2021-06-21 18:04:59 INFO profiler.instrument.engine=ASM
2021-06-21 18:04:59 INFO profiler.instrument.matcher.enable=true
2021-06-21 18:04:59 INFO profiler.dynamicConfig.enable=false
2021-06-21 18:04:59 INFO profiler.dynamicConfig.url=http://127.0.0.1:8080/pinpoint-config/v1/agentConfig
2021-06-21 18:04:59 INFO profiler.instrument.matcher.interface.cache.size=4
2021-06-21 18:04:59 INFO profiler.instrument.matcher.interface.cache.entry.size=16
2021-06-21 18:04:59 INFO profiler.instrument.matcher.annotation.cache.size=4
2021-06-21 18:04:59 INFO profiler.instrument.matcher.annotation.cache.entry.size=4
2021-06-21 18:04:59 INFO profiler.instrument.matcher.super.cache.size=4
2021-06-21 18:04:59 INFO profiler.instrument.matcher.super.cache.entry.size=4
2021-06-21 18:04:59 INFO profiler.interceptorregistry.size=8192
2021-06-21 18:04:59 INFO profiler.collector.span.ip=10.47.161.66
2021-06-21 18:04:59 INFO profiler.collector.span.port=9996
2021-06-21 18:04:59 INFO profiler.collector.stat.ip=10.47.161.66
2021-06-21 18:04:59 INFO profiler.collector.stat.port=9995
2021-06-21 18:04:59 INFO profiler.collector.tcp.ip=10.47.161.66
2021-06-21 18:04:59 INFO profiler.collector.tcp.port=9994
2021-06-21 18:04:59 INFO profiler.spandatasender.write.queue.size=5120
2021-06-21 18:04:59 INFO profiler.spandatasender.socket.sendbuffersize=1048576
2021-06-21 18:04:59 INFO profiler.spandatasender.socket.timeout=3000
2021-06-21 18:04:59 INFO profiler.spandatasender.chunk.size=16384
2021-06-21 18:04:59 INFO profiler.spandatasender.socket.type=OIO
2021-06-21 18:04:59 INFO profiler.spandatasender.transport.type=UDP
2021-06-21 18:04:59 INFO profiler.statdatasender.write.queue.size=5120
2021-06-21 18:04:59 INFO profiler.statdatasender.socket.sendbuffersize=1048576
2021-06-21 18:04:59 INFO profiler.statdatasender.socket.timeout=3000
2021-06-21 18:04:59 INFO profiler.statdatasender.chunk.size=16384
2021-06-21 18:04:59 INFO profiler.statdatasender.socket.type=OIO
2021-06-21 18:04:59 INFO profiler.statdatasender.transport.type=UDP
2021-06-21 18:04:59 INFO profiler.tcpdatasender.command.accept.enable=true
2021-06-21 18:04:59 INFO profiler.tcpdatasender.command.activethread.enable=true
2021-06-21 18:04:59 INFO profiler.tcpdatasender.command.activethread.count.enable=true
2021-06-21 18:04:59 INFO profiler.tcpdatasender.command.activethread.threaddump.enable=true
2021-06-21 18:04:59 INFO profiler.tcpdatasender.command.activethread.threadlightdump.enable=true
2021-06-21 18:04:59 INFO profiler.pinpoint.activethread=true
2021-06-21 18:04:59 INFO profiler.pinpoint.datasource=true
2021-06-21 18:04:59 INFO profiler.pinpoint.datasource.tracelimitsize=20
2021-06-21 18:04:59 INFO profiler.monitor.deadlock.enable=true
2021-06-21 18:04:59 INFO profiler.monitor.deadlock.interval=60000
2021-06-21 18:04:59 INFO profiler.callstack.max.depth=64
2021-06-21 18:04:59 INFO profiler.jdbc.sqlcachesize=1024
2021-06-21 18:04:59 INFO profiler.jdbc.tracesqlbindvalue=true
2021-06-21 18:04:59 INFO profiler.sampling.enable=true
2021-06-21 18:04:59 INFO profiler.sampling.rate=1
2021-06-21 18:04:59 INFO profiler.io.buffering.enable=true
2021-06-21 18:04:59 INFO profiler.io.buffering.buffersize=20
2021-06-21 18:04:59 INFO profiler.jvm.vendor.name=
2021-06-21 18:04:59 INFO profiler.jvm.stat.collect.interval=5000
2021-06-21 18:04:59 INFO profiler.jvm.stat.batch.send.count=6
2021-06-21 18:04:59 INFO profiler.stat.jvm.collect.detailed.metrics=false
2021-06-21 18:04:59 INFO profiler.agentInfo.send.retry.interval=300000
2021-06-21 18:04:59 INFO profiler.applicationservertype=null
2021-06-21 18:04:59 INFO profiler.include=
2021-06-21 18:04:59 INFO profiler.interceptor.exception.propagate=false
2021-06-21 18:04:59 INFO profiler.lambda.expressions.support=true
2021-06-21 18:04:59 INFO profiler.proxy.http.header.enable=true
2021-06-21 18:04:59 INFO configuration loaded successfully.
UN_USED_PORT:65535
log4j:WARN No appenders could be found for logger (org.jboss.netty.channel.socket.nio.SelectorUtil).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
2021-06-21 18:05:01 INFO profiler.activemq.client.enable=true
2021-06-21 18:05:01 INFO profiler.activemq.client.producer.enable=true
2021-06-21 18:05:01 INFO profiler.activemq.client.consumer.enable=true
2021-06-21 18:05:01 INFO profiler.activemq.client.destination.separator=
2021-06-21 18:05:01 INFO profiler.activemq.client.destination.exclude=
2021-06-21 18:05:01 INFO profiler.arcus=true
2021-06-21 18:05:01 INFO profiler.arcus.keytrace=true
2021-06-21 18:05:01 INFO profiler.arcus.async=true
2021-06-21 18:05:01 INFO profiler.memcached=true
2021-06-21 18:05:01 INFO profiler.memcached.keytrace=true
2021-06-21 18:05:01 INFO profiler.memcached.async=true
2021-06-21 18:05:01 INFO profiler.entranceClass=
2021-06-21 18:05:01 INFO profiler.asynClass=
2021-06-21 18:05:01 INFO profiler.asynEnable=false
2021-06-21 18:05:01 INFO profiler.cassandra=true
2021-06-21 18:05:01 INFO profiler.cassandra.tracecqlbindvalue=true
2021-06-21 18:05:01 INFO profiler.jdbc.dbcp=true
2021-06-21 18:05:01 INFO profiler.jdbc.dbcp.connectionclose=true
2021-06-21 18:05:01 INFO profiler.jdbc.dbcp2=true
2021-06-21 18:05:01 INFO profiler.jdbc.dbcp2.connectionclose=true
2021-06-21 18:05:01 INFO profiler.jdbc.cubrid=true
2021-06-21 18:05:01 INFO profiler.jdbc.cubrid.tracesqlbindvalue=true
2021-06-21 18:05:01 INFO profiler.jdbc.cubrid.setautocommit=true
2021-06-21 18:05:01 INFO profiler.jdbc.cubrid.commit=true
2021-06-21 18:05:01 INFO profiler.jdbc.cubrid.rollback=true
2021-06-21 18:05:01 INFO profiler.cxf.client=false
2021-06-21 18:05:01 INFO profiler.cxf.client.hiddenParams=
2021-06-21 18:05:01 INFO profiler.dubbo.enable=true
2021-06-21 18:05:01 INFO profiler.google.httpclient.async=true
2021-06-21 18:05:01 INFO profiler.json.gson=true
2021-06-21 18:05:01 INFO profiler.jdbc.hikaricp=true
2021-06-21 18:05:01 INFO profiler.jdbc.hikaricp.connectionclose=true
2021-06-21 18:05:01 INFO profiler.apache.httpclient3.param=true
2021-06-21 18:05:01 INFO profiler.apache.httpclient3.cookie=true
2021-06-21 18:05:01 INFO profiler.apache.httpclient3.cookie.dumptype=ALWAYS
2021-06-21 18:05:01 INFO profiler.apache.httpclient3.cookie.sampling.rate=1
2021-06-21 18:05:01 INFO profiler.apache.httpclient3.entity=true
2021-06-21 18:05:01 INFO profiler.apache.httpclient3.entity.dumptype=ALWAYS
2021-06-21 18:05:01 INFO profiler.apache.httpclient3.entity.sampling.rate=1
2021-06-21 18:05:01 INFO profiler.apache.httpclient3.io=true
2021-06-21 18:05:01 INFO profiler.apache.httpclient4.param=true
2021-06-21 18:05:01 INFO profiler.apache.httpclient4.cookie=true
2021-06-21 18:05:01 INFO profiler.apache.httpclient4.cookie.dumptype=ALWAYS
2021-06-21 18:05:01 INFO profiler.apache.httpclient4.cookie.sampling.rate=1
2021-06-21 18:05:01 INFO profiler.apache.httpclient4.entity=true
2021-06-21 18:05:01 INFO profiler.apache.httpclient4.entity.dumptype=ALWAYS
2021-06-21 18:05:01 INFO profiler.apache.httpclient4.entity.sampling.rate=1
2021-06-21 18:05:01 INFO profiler.apache.httpclient4.entity.statuscode=true
2021-06-21 18:05:01 INFO profiler.apache.httpclient4.io=true
2021-06-21 18:05:01 INFO profiler.hystrix=true
2021-06-21 18:05:01 INFO profiler.hystrix.command.num.anonymousInnerClass=3
2021-06-21 18:05:01 INFO profiler.orm.ibatis=true
2021-06-21 18:05:01 INFO profiler.json.jackson=true
2021-06-21 18:05:01 INFO profiler.jboss.enable=true
2021-06-21 18:05:01 INFO profiler.jboss.traceEjb=false
2021-06-21 18:05:01 INFO profiler.jboss.conditional.transform=true
2021-06-21 18:05:01 INFO profiler.jboss.hidepinpointheader=true
2021-06-21 18:05:01 INFO profiler.jboss.tracerequestparam=true
2021-06-21 18:05:01 INFO profiler.jboss.excludeurl=
2021-06-21 18:05:01 INFO profiler.jboss.realipheader=null
2021-06-21 18:05:01 INFO profiler.jboss.realipemptyvalue=null
2021-06-21 18:05:01 INFO profiler.jboss.excludemethod=
2021-06-21 18:05:01 INFO profiler.jetty.enable=true
2021-06-21 18:05:01 INFO profiler.jetty.excludeurl=
2021-06-21 18:05:01 INFO profiler.json.jsonlib=true
2021-06-21 18:05:01 INFO profiler.jsp.enable=true
2021-06-21 18:05:01 INFO profiler.jdbc.jtds=true
2021-06-21 18:05:01 INFO profiler.jdbc.jtds.tracesqlbindvalue=true
2021-06-21 18:05:01 INFO profiler.jdbc.jtds.setautocommit=true
2021-06-21 18:05:01 INFO profiler.jdbc.jtds.commit=true
2021-06-21 18:05:01 INFO profiler.jdbc.jtds.rollback=true
2021-06-21 18:05:01 INFO profiler.kafka.enable=true
2021-06-21 18:05:01 INFO profiler.kafka.entryPoint=
2021-06-21 18:05:01 INFO profiler.log4j.logging.transactioninfo=false
2021-06-21 18:05:01 INFO profiler.logback.logging.transactioninfo=false
2021-06-21 18:05:01 INFO profiler.jdbc.mariadb=true
2021-06-21 18:05:01 INFO profiler.jdbc.mariadb.tracesqlbindvalue=true
2021-06-21 18:05:01 INFO profiler.jdbc.mariadb.setautocommit=true
2021-06-21 18:05:01 INFO profiler.jdbc.mariadb.commit=true
2021-06-21 18:05:01 INFO profiler.jdbc.mariadb.rollback=true
2021-06-21 18:05:01 INFO profiler.orm.mybatis=true
2021-06-21 18:05:01 INFO profiler.jdbc.mysql=true
2021-06-21 18:05:01 INFO profiler.jdbc.mysql.tracesqlbindvalue=true
2021-06-21 18:05:01 INFO profiler.jdbc.mysql.setautocommit=true
2021-06-21 18:05:01 INFO profiler.jdbc.mysql.commit=true
2021-06-21 18:05:01 INFO profiler.jdbc.mysql.rollback=true
2021-06-21 18:05:01 INFO profiler.netty=false
2021-06-21 18:05:01 INFO profiler.netty.http=false
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient=true
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient.cookie=true
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient.cookie.dumptype=ALWAYS
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient.cookie.dumpsize=1024
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient.cookie.sampling.rate=1
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient.entity=true
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient.entity.dumptype=ALWAYS
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient.entity.dumpsize=1024
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient.entity.sampling.rate=1
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient.param=true
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient.param.dumptype=ALWAYS
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient.param.dumpsize=1024
2021-06-21 18:05:01 INFO profiler.ning.asynchttpclient.param.sampling.rate=1
2021-06-21 18:05:01 INFO profiler.okhttp.enable=true
2021-06-21 18:05:01 INFO profiler.okhttp.param=true
2021-06-21 18:05:01 INFO profiler.okhttp.cookie=false
2021-06-21 18:05:01 INFO profiler.okhttp.cookie.dumptype=EXCEPTION
2021-06-21 18:05:01 INFO profiler.okhttp.cookie.sampling.rate=10
2021-06-21 18:05:01 INFO profiler.okhttp.entity.statuscode=true
2021-06-21 18:05:01 INFO profiler.okhttp.async=true
2021-06-21 18:05:01 INFO profiler.okhttp.enable=true
2021-06-21 18:05:01 INFO profiler.okhttp.param=true
2021-06-21 18:05:01 INFO profiler.okhttp.cookie=false
2021-06-21 18:05:01 INFO profiler.okhttp.cookie.dumptype=EXCEPTION
2021-06-21 18:05:01 INFO profiler.okhttp.cookie.sampling.rate=10
2021-06-21 18:05:01 INFO profiler.okhttp.entity.statuscode=true
2021-06-21 18:05:01 INFO profiler.okhttp.async=true
2021-06-21 18:05:01 INFO profiler.jdbc.oracle=true
2021-06-21 18:05:01 INFO profiler.jdbc.oracle.tracesqlbindvalue=true
2021-06-21 18:05:01 INFO profiler.jdbc.oracle.setautocommit=true
2021-06-21 18:05:01 INFO profiler.jdbc.oracle.commit=true
2021-06-21 18:05:01 INFO profiler.jdbc.oracle.rollback=true
2021-06-21 18:05:01 INFO profiler.jdbc.postgresql=true
2021-06-21 18:05:01 INFO profiler.jdbc.postgresql.setautocommit=true
2021-06-21 18:05:01 INFO profiler.jdbc.postgresql.commit=true
2021-06-21 18:05:01 INFO profiler.jdbc.postgresql.rollback=true
2021-06-21 18:05:01 INFO profiler.jdbc.maxsqlbindvaluesize=1024
2021-06-21 18:05:01 INFO profiler.redis=true
2021-06-21 18:05:01 INFO profiler.redis.enable=true
2021-06-21 18:05:01 INFO profiler.redis.pipeline=false
2021-06-21 18:05:01 INFO profiler.redis.io=true
2021-06-21 18:05:01 INFO profiler.resin.enable=true
2021-06-21 18:05:01 INFO profiler.resin.bootstrap.main=
2021-06-21 18:05:01 INFO profiler.resin.tracerequestparam=true
2021-06-21 18:05:01 INFO profiler.resin.excludeurl=
2021-06-21 18:05:01 INFO profiler.resin.realipheader=null
2021-06-21 18:05:01 INFO profiler.resin.realipemptyvalue=null
2021-06-21 18:05:01 INFO profiler.resin.excludemethod=
2021-06-21 18:05:01 INFO profiler.resin.hidepinpointheader=true
2021-06-21 18:05:01 INFO profiler.resin.tracecookies=true
2021-06-21 18:05:01 INFO profiler.resin.cookie.sampling.rate=10
2021-06-21 18:05:01 INFO profiler.resin.cookie.dumptype=ALWAYS
2021-06-21 18:05:01 INFO profiler.resttemplate=false
2021-06-21 18:05:01 INFO profiler.springboot.enable=true
2021-06-21 18:05:01 INFO profiler.spring.beans=true
2021-06-21 18:05:01 INFO profiler.spring.beans.name.pattern=null
2021-06-21 18:05:01 INFO profiler.spring.beans.class.pattern=null
2021-06-21 18:05:01 INFO profiler.spring.beans.annotation=null
2021-06-21 18:05:01 INFO profiler.spring.beans.[0-9]+(.scope|.base-packages|.name.pattern|.class.pattern|.annotation)={profiler.spring.beans.1.class.pattern=, profiler.spring.beans.1.scope=component-scan, profiler.spring.beans.1.name.pattern=, profiler.spring.beans.1.base-packages=, profiler.spring.beans.1.annotation=org.springframework.stereotype.Controller,org.springframework.stereotype.Service,org.springframework.stereotype.Repository}
2021-06-21 18:05:01 INFO profiler.spring.beans.mark.error=false
2021-06-21 18:05:01 INFO profiler.thrift.client=true
2021-06-21 18:05:01 INFO profiler.thrift.client.async=true
2021-06-21 18:05:01 INFO profiler.thrift.processor=true
2021-06-21 18:05:01 INFO profiler.thrift.processor.async=true
2021-06-21 18:05:01 INFO profiler.thrift.service.args=true
2021-06-21 18:05:01 INFO profiler.thrift.service.result=true
2021-06-21 18:05:01 INFO profiler.tomcat.enable=true
2021-06-21 18:05:01 INFO profiler.tomcat.conditional.transform=true
2021-06-21 18:05:01 INFO profiler.tomcat.hidepinpointheader=true
2021-06-21 18:05:01 INFO profiler.tomcat.tracerequestparam=true
2021-06-21 18:05:01 INFO profiler.tomcat.excludeurl=/aa/test.html, /bb/exclude.html
2021-06-21 18:05:01 INFO profiler.tomcat.realipheader=null
2021-06-21 18:05:01 INFO profiler.tomcat.realipemptyvalue=null
2021-06-21 18:05:01 INFO profiler.tomcat.excludemethod=
2021-06-21 18:05:01 INFO profiler.entrypoint=
2021-06-21 18:05:01 INFO profiler.vertx.enable=false
2021-06-21 18:05:01 INFO profiler.vertx.http.server.enable=false
2021-06-21 18:05:01 INFO profiler.vertx.http.client.enable=false
2021-06-21 18:05:01 INFO profiler.weblogic.enable=true
2021-06-21 18:05:01 INFO profiler.weblogic.excludeurl=
2021-06-21 18:05:01 INFO profiler.websphere.excludeurl=
2021-06-21 18:05:16 INFO profiler.trace.dataformat.version=v1
2021-06-21 18:05:16 INFO profiler.trace.dataformat.version=v1
2021-06-21 18:05:16 INFO profiler.trace.dataformat.version=v1
2021-06-21 18:05:16 INFO profiler.debug.injector.type=debug
2021-06-21 18:05:16 INFO bytecode.dump.enable=false
2021-06-21 18:05:25 INFO profiler.spring.beans.name.pattern=null
2021-06-21 18:05:25 INFO profiler.spring.beans.class.pattern=null
2021-06-21 18:05:25 INFO profiler.spring.beans.annotation=null
2021-06-21 18:05:25 INFO profiler.spring.beans.[0-9]+(.scope|.base-packages|.name.pattern|.class.pattern|.annotation)={profiler.spring.beans.1.class.pattern=, profiler.spring.beans.1.scope=component-scan, profiler.spring.beans.1.name.pattern=, profiler.spring.beans.1.base-packages=, profiler.spring.beans.1.annotation=org.springframework.stereotype.Controller,org.springframework.stereotype.Service,org.springframework.stereotype.Repository}
[mizar-cloud] [$] [2021-06-21 18:05:25.243] [INFO] [background-preinit] [org.hibernate.validator.internal.util.Version] [<clinit>] [21] : HV000001: Hibernate Validator 6.1.5.Final
[mizar-cloud-demo] [$] [2021-06-21 18:05:28.446] [INFO] [main] [com.ctrip.framework.foundation.internals.provider.DefaultApplicationProvider] [initAppId] [96] : App ID is set to 548676 by app.id property from /META-INF/app.properties
[mizar-cloud-demo] [$] [2021-06-21 18:05:28.512] [WARN] [main] [com.ctrip.framework.foundation.internals.provider.DefaultServerProvider] [initialize] [40] : /opt/settings/server.properties does not exist or is not readable.
[mizar-cloud-demo] [$] [2021-06-21 18:05:28.513] [INFO] [main] [com.ctrip.framework.foundation.internals.provider.DefaultServerProvider] [initEnvType] [109] : Environment is set to [STG] by JVM system property 'env'.
[mizar-cloud-demo] [$] [2021-06-21 18:05:28.514] [INFO] [main] [com.ctrip.framework.foundation.internals.provider.DefaultServerProvider] [initDataCenter] [139] : Data Center is set to [default] by JVM system property 'idc'.
2021-06-21 18:05:28 INFO profiler.jdk.http.param=true
2021-06-21 18:05:28 INFO profiler.jdk.http.param=true
2021-06-21 18:05:28 INFO profiler.jdk.http.param=true
[mizar-cloud-demo] [$] [2021-06-21 18:05:29.325] [INFO] [main] [com.pingan.mizar.cloud.demo.Application8080] [logStartupProfileInfo] [651] : No active profile set, falling back to default profiles: default
[mizar-cloud-demo] [$] [2021-06-21 18:05:33.219] [INFO] [main] [org.springframework.data.repository.config.RepositoryConfigurationDelegate] [multipleStoresDetected] [249] : Multiple Spring Data modules found, entering strict repository configuration mode!
[mizar-cloud-demo] [$] [2021-06-21 18:05:33.223] [INFO] [main] [org.springframework.data.repository.config.RepositoryConfigurationDelegate] [registerRepositoriesIn] [127] : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
[mizar-cloud-demo] [$] [2021-06-21 18:05:33.413] [INFO] [main] [org.springframework.data.repository.config.RepositoryConfigurationDelegate] [registerRepositoriesIn] [187] : Finished Spring Data repository scanning in 88ms. Found 0 Redis repository interfaces.
[mizar-cloud-demo] [$] [2021-06-21 18:05:34.928] [INFO] [main] [org.springframework.context.annotation.ConfigurationClassPostProcessor] [enhanceConfigurationClasses] [403] : Cannot enhance @Configuration bean definition 'com.pazl.platform.cfg.spring.boot.ApolloAutoConfiguration' since its singleton instance has been created too early. The typical cause is a non-static @Bean method with a BeanDefinitionRegistryPostProcessor return type: Consider declaring such methods as 'static'.
[mizar-cloud-demo] [$] [2021-06-21 18:05:35.615] [INFO] [main] [org.springframework.cloud.context.scope.GenericScope] [setSerializationId] [295] : BeanFactory id=239083fc-8135-381f-80ef-f2a173829d75
[mizar-cloud-demo] [$] [2021-06-21 18:05:35.628] [WARN] [main] [org.springframework.boot.context.properties.PropertySourcesDeducer] [getSinglePropertySourcesPlaceholderConfigurer] [66] : Multiple PropertySourcesPlaceholderConfigurer beans registered [propertySourcesPlaceholderConfigurer, org.springframework.context.support.PropertySourcesPlaceholderConfigurer], falling back to Environment
2021-06-21 18:05:39 INFO profiler.tomcat.enable=true
2021-06-21 18:05:39 INFO profiler.tomcat.conditional.transform=true
2021-06-21 18:05:39 INFO profiler.tomcat.hidepinpointheader=true
2021-06-21 18:05:39 INFO profiler.tomcat.tracerequestparam=true
2021-06-21 18:05:39 INFO profiler.tomcat.excludeurl=/aa/test.html, /bb/exclude.html
2021-06-21 18:05:39 INFO profiler.tomcat.realipheader=null
2021-06-21 18:05:39 INFO profiler.tomcat.realipemptyvalue=null
2021-06-21 18:05:39 INFO profiler.tomcat.excludemethod=
[mizar-cloud-demo] [$] [2021-06-21 18:05:39.716] [INFO] [main] [org.springframework.boot.web.embedded.tomcat.TomcatWebServer] [initialize] [108] : Tomcat initialized with port(s): 30113 (http)
[mizar-cloud-demo] [$] [2021-06-21 18:05:39.732] [INFO] [main] [org.apache.coyote.http11.Http11NioProtocol] [log] [173] : Initializing ProtocolHandler ["http-nio-30113"]
[mizar-cloud-demo] [$] [2021-06-21 18:05:39.734] [INFO] [main] [org.apache.catalina.core.StandardService] [log] [173] : Starting service [Tomcat]
[mizar-cloud-demo] [$] [2021-06-21 18:05:39.735] [INFO] [main] [org.apache.catalina.core.StandardEngine] [log] [173] : Starting Servlet engine: [Apache Tomcat/9.0.38]
[mizar-cloud-demo] [$] [2021-06-21 18:05:40.223] [INFO] [main] [org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]] [log] [173] : Initializing Spring embedded WebApplicationContext
[mizar-cloud-demo] [$] [2021-06-21 18:05:40.224] [INFO] [main] [org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext] [prepareWebApplicationContext] [285] : Root WebApplicationContext: initialization completed in 10696 ms
[mizar-cloud-demo] [$] [2021-06-21 18:05:42.524] [INFO] [main] [com.pingan.mizar.cloud.db.datasource.DataSourceConfig] [druidDataSource] [85] : =========druid oralce============={
CreateTime:"2021-06-21 18:05:41",
ActiveCount:0,
PoolingCount:0,
CreateCount:0,
DestroyCount:0,
CloseCount:0,
ConnectCount:0,
Connections:[
]
}
[mizar-cloud-demo] [$] [2021-06-21 18:05:42.911] [INFO] [main] [com.pingan.mizar.cloud.db.datasource.DataSourceConfig] [mysqlDruidDataSource] [106] : =========druid mysql============={
CreateTime:"2021-06-21 18:05:42",
ActiveCount:0,
PoolingCount:0,
CreateCount:0,
DestroyCount:0,
CloseCount:0,
ConnectCount:0,
Connections:[
]
}
Logging initialized using 'class org.apache.ibatis.logging.stdout.StdOutImpl' adapter.
| |. __ |
| | |\/|)(| | |\ |)|||_\
/ |
3.3.0
[mizar-cloud-demo] [$] [2021-06-21 18:05:46.214] [INFO] [main] [org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor] [initialize] [181] : Initializing ExecutorService
[mizar-cloud-demo] [$] [2021-06-21 18:05:46.929] [WARN] [main] [com.netflix.config.sources.URLConfigurationSource] [<init>] [121] : No URLs will be polled as dynamic configuration sources.
[mizar-cloud-demo] [$] [2021-06-21 18:05:46.930] [INFO] [main] [com.netflix.config.sources.URLConfigurationSource] [<init>] [122] : To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
[mizar-cloud-demo] [$] [2021-06-21 18:05:47.020] [WARN] [main] [com.netflix.config.sources.URLConfigurationSource] [<init>] [121] : No URLs will be polled as dynamic configuration sources.
[mizar-cloud-demo] [$] [2021-06-21 18:05:47.021] [INFO] [main] [com.netflix.config.sources.URLConfigurationSource] [<init>] [122] : To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
[mizar-cloud-demo] [$] [2021-06-21 18:05:48.834] [INFO] [main] [org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor] [initialize] [181] : Initializing ExecutorService 'applicationTaskExecutor'
[mizar-cloud-demo] [$] [2021-06-21 18:05:54.626] [INFO] [main] [org.springframework.cloud.netflix.eureka.config.DiscoveryClientOptionalArgsConfiguration] [discoveryClientOptionalArgs] [78] : Eureka HTTP Client uses Jersey
[mizar-cloud-demo] [$] [2021-06-21 18:05:55.520] [WARN] [main] [org.springframework.cloud.loadbalancer.config.BlockingLoadBalancerClientAutoConfiguration$BlockingLoadBalancerClientRibbonWarnLogger] [logWarning] [86] : You already have RibbonLoadBalancerClient on your classpath. It will be used by default. As Spring Cloud Ribbon is in maintenance mode. We recommend switching to BlockingLoadBalancerClient instead. In order to use it, set the value of spring.cloud.loadbalancer.ribbon.enabled
to false
or remove spring-cloud-starter-netflix-ribbon from your project.
2021-06-21 18:05:55 INFO profiler.apache.httpclient4.param=true
2021-06-21 18:05:55 INFO profiler.apache.httpclient4.cookie=true
2021-06-21 18:05:55 INFO profiler.apache.httpclient4.cookie.dumptype=ALWAYS
2021-06-21 18:05:55 INFO profiler.apache.httpclient4.cookie.sampling.rate=1
2021-06-21 18:05:55 INFO profiler.apache.httpclient4.entity=true
2021-06-21 18:05:55 INFO profiler.apache.httpclient4.entity.dumptype=ALWAYS
2021-06-21 18:05:55 INFO profiler.apache.httpclient4.entity.sampling.rate=1
2021-06-21 18:05:55 INFO profiler.apache.httpclient4.entity.statuscode=true
2021-06-21 18:05:55 INFO profiler.apache.httpclient4.io=true
[mizar-cloud-demo] [$] [2021-06-21 18:05:56.233] [INFO] [main] [org.springframework.cloud.netflix.eureka.InstanceInfoFactory] [create] [72] : Setting initial instance status as: STARTING
[mizar-cloud-demo] [$] [2021-06-21 18:05:56.814] [INFO] [main] [com.netflix.discovery.DiscoveryClient] [<init>] [371] : Initializing Eureka in region us-east-1
[mizar-cloud-demo] [$] [2021-06-21 18:05:57.523] [INFO] [main] [com.netflix.discovery.provider.DiscoveryJerseyProvider] [<init>] [70] : Using JSON encoding codec LegacyJacksonJson
[mizar-cloud-demo] [$] [2021-06-21 18:05:57.524] [INFO] [main] [com.netflix.discovery.provider.DiscoveryJerseyProvider] [<init>] [71] : Using JSON decoding codec LegacyJacksonJson
[mizar-cloud-demo] [$] [2021-06-21 18:05:58.733] [INFO] [main] [com.netflix.discovery.provider.DiscoveryJerseyProvider] [<init>] [80] : Using XML encoding codec XStreamXml
[mizar-cloud-demo] [$] [2021-06-21 18:05:58.812] [INFO] [main] [com.netflix.discovery.provider.DiscoveryJerseyProvider] [<init>] [81] : Using XML decoding codec XStreamXml
[mizar-cloud-demo] [$] [2021-06-21 18:06:00.622] [INFO] [main] [com.netflix.discovery.shared.resolver.aws.ConfigClusterResolver] [getClusterEndpoints] [43] : Resolving eureka endpoints via configuration
[mizar-cloud-demo] [$] [2021-06-21 18:06:00.733] [INFO] [main] [com.netflix.discovery.DiscoveryClient] [fetchRegistry] [1004] : Disable delta property : false
[mizar-cloud-demo] [$] [2021-06-21 18:06:00.734] [INFO] [main] [com.netflix.discovery.DiscoveryClient] [fetchRegistry] [1005] : Single vip registry refresh property : null
[mizar-cloud-demo] [$] [2021-06-21 18:06:00.734] [INFO] [main] [com.netflix.discovery.DiscoveryClient] [fetchRegistry] [1006] : Force full registry fetch : false
[mizar-cloud-demo] [$] [2021-06-21 18:06:00.811] [INFO] [main] [com.netflix.discovery.DiscoveryClient] [fetchRegistry] [1007] : Application is null : false
[mizar-cloud-demo] [$] [2021-06-21 18:06:00.812] [INFO] [main] [com.netflix.discovery.DiscoveryClient] [fetchRegistry] [1008] : Registered Applications size is zero : true
[mizar-cloud-demo] [$] [2021-06-21 18:06:00.812] [INFO] [main] [com.netflix.discovery.DiscoveryClient] [fetchRegistry] [1010] : Application version is -1: true
[mizar-cloud-demo] [$] [2021-06-21 18:06:00.813] [INFO] [main] [com.netflix.discovery.DiscoveryClient] [getAndStoreFullRegistry] [1093] : Getting all instance registry info from the eureka server
[mizar-cloud-demo] [$] [2021-06-21 18:06:02.822] [INFO] [main] [com.netflix.discovery.DiscoveryClient] [getAndStoreFullRegistry] [1102] : The response status is 200
[mizar-cloud-demo] [$] [2021-06-21 18:06:02.916] [INFO] [main] [com.netflix.discovery.DiscoveryClient] [initScheduledTasks] [1317] : Starting heartbeat executor: renew interval is: 30
[mizar-cloud-demo] [$] [2021-06-21 18:06:02.921] [INFO] [main] [com.netflix.discovery.InstanceInfoReplicator] [<init>] [60] : InstanceInfoReplicator onDemand update allowed rate per min is 4
[mizar-cloud-demo] [$] [2021-06-21 18:06:02.927] [INFO] [main] [com.netflix.discovery.DiscoveryClient] [<init>] [491] : Discovery Client initialized at timestamp 1624269962925 with initial instances count: 618
[mizar-cloud-demo] [$] [2021-06-21 18:06:03.012] [INFO] [main] [org.springframework.cloud.netflix.eureka.serviceregistry.EurekaServiceRegistry] [register] [41] : Registering application UNKNOWN with eureka with status UP
[mizar-cloud-demo] [$] [2021-06-21 18:06:03.014] [INFO] [main] [com.netflix.discovery.DiscoveryClient] [notify] [1353] : Saw local status change event StatusChangeEvent [timestamp=1624269963014, current=UP, previous=STARTING]
[mizar-cloud-demo] [$] [2021-06-21 18:06:03.018] [INFO] [DiscoveryClient-InstanceInfoReplicator-0] [com.netflix.discovery.DiscoveryClient] [register] [870] : DiscoveryClient_UNKNOWN/LFB-L0439979::30113: registering service...
[mizar-cloud-demo] [$] [2021-06-21 18:06:03.018] [INFO] [main] [org.apache.coyote.http11.Http11NioProtocol] [log] [173] : Starting ProtocolHandler ["http-nio-30113"]
[mizar-cloud-demo] [$] [2021-06-21 18:06:03.127] [INFO] [main] [org.springframework.boot.web.embedded.tomcat.TomcatWebServer] [start] [220] : Tomcat started on port(s): 30113 (http) with context path ''
[mizar-cloud-demo] [$] [2021-06-21 18:06:03.129] [INFO] [main] [org.springframework.cloud.netflix.eureka.serviceregistry.EurekaAutoServiceRegistration] [onApplicationEvent] [145] : Updating port to 30113
[mizar-cloud-demo] [$] [2021-06-21 18:06:03.313] [INFO] [main] [com.pingan.mizar.cloud.demo.Application8080] [logStarted] [61] : Started Application8080 in 42.488 seconds (JVM running for 64.214)
[mizar-cloud-demo] [$] [2021-06-21 18:06:03.314] [INFO] [DiscoveryClient-InstanceInfoReplicator-0] [com.netflix.discovery.DiscoveryClient] [register] [879] : DiscoveryClient_UNKNOWN/LFB-L0439979::30113 - registration status: 204
[mizar-cloud-demo] [$] [2021-06-21 18:06:03.316] [INFO] [main] [com.pingan.mizar.cloud.demo.Application8080] [main] [26] : sl4j test
[mizar-cloud-demo] [$] [2021-06-21 18:06:03.316] [ERROR] [main] [com.pingan.mizar.cloud.demo.Application8080] [main] [27] : sl4j test
(♥◠‿◠)ノ゙ demo模块启动成功 ლ(´ڡ`ლ)゙
[mizar-cloud-demo] [$] [2021-06-21 18:06:14.126] [INFO] [http-nio-30113-exec-1] [org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]] [log] [173] : Initializing Spring DispatcherServlet 'dispatcherServlet'
[mizar-cloud-demo] [$] [2021-06-21 18:06:14.127] [INFO] [http-nio-30113-exec-1] [org.springframework.web.servlet.DispatcherServlet] [initServletBean] [525] : Initializing Servlet 'dispatcherServlet'
[mizar-cloud-demo] [$] [2021-06-21 18:06:14.225] [INFO] [http-nio-30113-exec-1] [org.springframework.web.servlet.DispatcherServlet] [initServletBean] [547] : Completed initialization in 97 ms
[Pipeline] }
[Pipeline] // script
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Declarative: Post Actions)
[Pipeline] echo
success
[Pipeline] sh
- curl -s http://10.47.19.51:30006/callback/dev1/FLS-CRM-DEV_crm-mizar-demo/17/fls-crm6.1.8/success/
success
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // node
[Pipeline] End of Pipeline
Finished: SUCCESS