tvision-charts-component 3.3.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (520) hide show
  1. package/README.md +40 -0
  2. package/dist/esm/_type/chart.d.ts +6 -0
  3. package/dist/esm/_type/chart.js +2 -0
  4. package/dist/esm/_type/chart.js.map +1 -0
  5. package/dist/esm/_type/data.d.ts +40 -0
  6. package/dist/esm/_type/data.js +2 -0
  7. package/dist/esm/_type/data.js.map +1 -0
  8. package/dist/esm/_type/index.d.ts +3 -0
  9. package/dist/esm/_type/index.js +4 -0
  10. package/dist/esm/_type/index.js.map +1 -0
  11. package/dist/esm/_type/options.d.ts +83 -0
  12. package/dist/esm/_type/options.js +2 -0
  13. package/dist/esm/_type/options.js.map +1 -0
  14. package/dist/esm/basicBar/README.md +79 -0
  15. package/dist/esm/basicBar/_example/Basic.d.ts +1 -0
  16. package/dist/esm/basicBar/_example/Basic.js +29 -0
  17. package/dist/esm/basicBar/_example/Basic.js.map +1 -0
  18. package/dist/esm/basicBar/_example/Basic.jsx +32 -0
  19. package/dist/esm/basicBar/_example/CustomColorSingleBar.d.ts +1 -0
  20. package/dist/esm/basicBar/_example/CustomColorSingleBar.js +58 -0
  21. package/dist/esm/basicBar/_example/CustomColorSingleBar.js.map +1 -0
  22. package/dist/esm/basicBar/_example/CustomColorSingleBar.jsx +66 -0
  23. package/dist/esm/basicBar/_example/FixedWidthBar.d.ts +1 -0
  24. package/dist/esm/basicBar/_example/FixedWidthBar.js +57 -0
  25. package/dist/esm/basicBar/_example/FixedWidthBar.js.map +1 -0
  26. package/dist/esm/basicBar/_example/FixedWidthBar.jsx +92 -0
  27. package/dist/esm/basicBar/_example/GroupedBar.d.ts +1 -0
  28. package/dist/esm/basicBar/_example/GroupedBar.js +35 -0
  29. package/dist/esm/basicBar/_example/GroupedBar.js.map +1 -0
  30. package/dist/esm/basicBar/_example/GroupedBar.jsx +37 -0
  31. package/dist/esm/basicBar/_example/HorizontalBar.d.ts +1 -0
  32. package/dist/esm/basicBar/_example/HorizontalBar.js +92 -0
  33. package/dist/esm/basicBar/_example/HorizontalBar.js.map +1 -0
  34. package/dist/esm/basicBar/_example/HorizontalBar.jsx +95 -0
  35. package/dist/esm/basicBar/_example/HorizontalStackedBar.d.ts +1 -0
  36. package/dist/esm/basicBar/_example/HorizontalStackedBar.js +97 -0
  37. package/dist/esm/basicBar/_example/HorizontalStackedBar.js.map +1 -0
  38. package/dist/esm/basicBar/_example/HorizontalStackedBar.jsx +100 -0
  39. package/dist/esm/basicBar/_example/LabelRotate.d.ts +1 -0
  40. package/dist/esm/basicBar/_example/LabelRotate.js +20 -0
  41. package/dist/esm/basicBar/_example/LabelRotate.js.map +1 -0
  42. package/dist/esm/basicBar/_example/LabelRotate.jsx +24 -0
  43. package/dist/esm/basicBar/_example/StackedBar.d.ts +1 -0
  44. package/dist/esm/basicBar/_example/StackedBar.js +44 -0
  45. package/dist/esm/basicBar/_example/StackedBar.js.map +1 -0
  46. package/dist/esm/basicBar/_example/StackedBar.jsx +46 -0
  47. package/dist/esm/basicBar/_example/VerticalWaterfallBar.d.ts +1 -0
  48. package/dist/esm/basicBar/_example/VerticalWaterfallBar.js +100 -0
  49. package/dist/esm/basicBar/_example/VerticalWaterfallBar.js.map +1 -0
  50. package/dist/esm/basicBar/_example/VerticalWaterfallBar.jsx +117 -0
  51. package/dist/esm/basicBar/_example/WaterfallHoverBar.d.ts +1 -0
  52. package/dist/esm/basicBar/_example/WaterfallHoverBar.js +134 -0
  53. package/dist/esm/basicBar/_example/WaterfallHoverBar.js.map +1 -0
  54. package/dist/esm/basicBar/_example/WaterfallHoverBar.jsx +152 -0
  55. package/dist/esm/basicBar/_example/WaterfallZebraBar.d.ts +1 -0
  56. package/dist/esm/basicBar/_example/WaterfallZebraBar.js +122 -0
  57. package/dist/esm/basicBar/_example/WaterfallZebraBar.js.map +1 -0
  58. package/dist/esm/basicBar/_example/WaterfallZebraBar.jsx +137 -0
  59. package/dist/esm/basicBar/_example/XaxisBelowWaterfall.d.ts +1 -0
  60. package/dist/esm/basicBar/_example/XaxisBelowWaterfall.js +93 -0
  61. package/dist/esm/basicBar/_example/XaxisBelowWaterfall.js.map +1 -0
  62. package/dist/esm/basicBar/_example/XaxisBelowWaterfall.jsx +101 -0
  63. package/dist/esm/basicBar/_example/XaxisHideBar.d.ts +1 -0
  64. package/dist/esm/basicBar/_example/XaxisHideBar.js +54 -0
  65. package/dist/esm/basicBar/_example/XaxisHideBar.js.map +1 -0
  66. package/dist/esm/basicBar/_example/XaxisHideBar.jsx +59 -0
  67. package/dist/esm/basicBar/_example/XaxisLabelWrap.d.ts +1 -0
  68. package/dist/esm/basicBar/_example/XaxisLabelWrap.js +66 -0
  69. package/dist/esm/basicBar/_example/XaxisLabelWrap.js.map +1 -0
  70. package/dist/esm/basicBar/_example/XaxisLabelWrap.jsx +70 -0
  71. package/dist/esm/basicBar/_example/XaxisTopWaterfall.d.ts +1 -0
  72. package/dist/esm/basicBar/_example/XaxisTopWaterfall.js +94 -0
  73. package/dist/esm/basicBar/_example/XaxisTopWaterfall.js.map +1 -0
  74. package/dist/esm/basicBar/_example/XaxisTopWaterfall.jsx +102 -0
  75. package/dist/esm/basicBar/_example/XaxisTopWaterfallWithLabel.d.ts +1 -0
  76. package/dist/esm/basicBar/_example/XaxisTopWaterfallWithLabel.js +104 -0
  77. package/dist/esm/basicBar/_example/XaxisTopWaterfallWithLabel.js.map +1 -0
  78. package/dist/esm/basicBar/_example/XaxisTopWaterfallWithLabel.jsx +112 -0
  79. package/dist/esm/basicBar/_example/YaxisNegativeBasicBar.d.ts +1 -0
  80. package/dist/esm/basicBar/_example/YaxisNegativeBasicBar.js +28 -0
  81. package/dist/esm/basicBar/_example/YaxisNegativeBasicBar.js.map +1 -0
  82. package/dist/esm/basicBar/_example/YaxisNegativeBasicBar.jsx +31 -0
  83. package/dist/esm/basicBar/_example/YaxisReverseZoomBar.d.ts +1 -0
  84. package/dist/esm/basicBar/_example/YaxisReverseZoomBar.js +117 -0
  85. package/dist/esm/basicBar/_example/YaxisReverseZoomBar.js.map +1 -0
  86. package/dist/esm/basicBar/_example/YaxisReverseZoomBar.jsx +135 -0
  87. package/dist/esm/basicBar/demo/basic.md +34 -0
  88. package/dist/esm/basicBar/demo/labelRotate.md +35 -0
  89. package/dist/esm/basicBar/index.d.ts +56 -0
  90. package/dist/esm/basicBar/index.js +42 -0
  91. package/dist/esm/basicBar/index.js.map +1 -0
  92. package/dist/esm/basicBar/index.md +30 -0
  93. package/dist/esm/basicBar/style/index.less +0 -0
  94. package/dist/esm/basicFlame/README.md +56 -0
  95. package/dist/esm/basicFlame/_example/BackgroundBasic.d.ts +1 -0
  96. package/dist/esm/basicFlame/_example/BackgroundBasic.js +52 -0
  97. package/dist/esm/basicFlame/_example/BackgroundBasic.js.map +1 -0
  98. package/dist/esm/basicFlame/_example/BackgroundBasic.jsx +57 -0
  99. package/dist/esm/basicFlame/_example/Basic.d.ts +1 -0
  100. package/dist/esm/basicFlame/_example/Basic.js +49 -0
  101. package/dist/esm/basicFlame/_example/Basic.js.map +1 -0
  102. package/dist/esm/basicFlame/_example/Basic.jsx +52 -0
  103. package/dist/esm/basicFlame/_example/ColorsBasic.d.ts +1 -0
  104. package/dist/esm/basicFlame/_example/ColorsBasic.js +50 -0
  105. package/dist/esm/basicFlame/_example/ColorsBasic.js.map +1 -0
  106. package/dist/esm/basicFlame/_example/ColorsBasic.jsx +53 -0
  107. package/dist/esm/basicFlame/_example/FillBasic.d.ts +1 -0
  108. package/dist/esm/basicFlame/_example/FillBasic.js +53 -0
  109. package/dist/esm/basicFlame/_example/FillBasic.js.map +1 -0
  110. package/dist/esm/basicFlame/_example/FillBasic.jsx +56 -0
  111. package/dist/esm/basicFlame/_example/HeightBasic.d.ts +1 -0
  112. package/dist/esm/basicFlame/_example/HeightBasic.js +49 -0
  113. package/dist/esm/basicFlame/_example/HeightBasic.js.map +1 -0
  114. package/dist/esm/basicFlame/_example/HeightBasic.jsx +52 -0
  115. package/dist/esm/basicFlame/_example/HueBasic.d.ts +1 -0
  116. package/dist/esm/basicFlame/_example/HueBasic.js +50 -0
  117. package/dist/esm/basicFlame/_example/HueBasic.js.map +1 -0
  118. package/dist/esm/basicFlame/_example/HueBasic.jsx +53 -0
  119. package/dist/esm/basicFlame/_example/LabelBasic.d.ts +1 -0
  120. package/dist/esm/basicFlame/_example/LabelBasic.js +53 -0
  121. package/dist/esm/basicFlame/_example/LabelBasic.js.map +1 -0
  122. package/dist/esm/basicFlame/_example/LabelBasic.jsx +56 -0
  123. package/dist/esm/basicFlame/_example/LargeBasic1.d.ts +1 -0
  124. package/dist/esm/basicFlame/_example/LargeBasic1.js +3895 -0
  125. package/dist/esm/basicFlame/_example/LargeBasic1.js.map +1 -0
  126. package/dist/esm/basicFlame/_example/LargeBasic1.jsx +3899 -0
  127. package/dist/esm/basicFlame/_example/LargeBasic2.d.ts +1 -0
  128. package/dist/esm/basicFlame/_example/LargeBasic2.js +10511 -0
  129. package/dist/esm/basicFlame/_example/LargeBasic2.js.map +1 -0
  130. package/dist/esm/basicFlame/_example/LargeBasic2.jsx +10515 -0
  131. package/dist/esm/basicFlame/_example/ResetBasic.d.ts +1 -0
  132. package/dist/esm/basicFlame/_example/ResetBasic.js +59 -0
  133. package/dist/esm/basicFlame/_example/ResetBasic.js.map +1 -0
  134. package/dist/esm/basicFlame/_example/ResetBasic.jsx +62 -0
  135. package/dist/esm/basicFlame/demo/basic.md +55 -0
  136. package/dist/esm/basicFlame/index.d.ts +28 -0
  137. package/dist/esm/basicFlame/index.js +29 -0
  138. package/dist/esm/basicFlame/index.js.map +1 -0
  139. package/dist/esm/basicFlame/index.md +23 -0
  140. package/dist/esm/basicFlame/style/index.less +0 -0
  141. package/dist/esm/basicFunnel/README.md +19 -0
  142. package/dist/esm/basicFunnel/_example/Basic.d.ts +1 -0
  143. package/dist/esm/basicFunnel/_example/Basic.js +70 -0
  144. package/dist/esm/basicFunnel/_example/Basic.js.map +1 -0
  145. package/dist/esm/basicFunnel/_example/Basic.jsx +82 -0
  146. package/dist/esm/basicFunnel/_example/SpaceFunnel.d.ts +1 -0
  147. package/dist/esm/basicFunnel/_example/SpaceFunnel.js +71 -0
  148. package/dist/esm/basicFunnel/_example/SpaceFunnel.js.map +1 -0
  149. package/dist/esm/basicFunnel/_example/SpaceFunnel.jsx +83 -0
  150. package/dist/esm/basicFunnel/demo/basic.md +45 -0
  151. package/dist/esm/basicFunnel/index.d.ts +19 -0
  152. package/dist/esm/basicFunnel/index.js +27 -0
  153. package/dist/esm/basicFunnel/index.js.map +1 -0
  154. package/dist/esm/basicFunnel/index.md +21 -0
  155. package/dist/esm/basicFunnel/style/index.less +0 -0
  156. package/dist/esm/basicGauge/README.md +24 -0
  157. package/dist/esm/basicGauge/_example/Basic.d.ts +1 -0
  158. package/dist/esm/basicGauge/_example/Basic.js +31 -0
  159. package/dist/esm/basicGauge/_example/Basic.js.map +1 -0
  160. package/dist/esm/basicGauge/_example/Basic.jsx +34 -0
  161. package/dist/esm/basicGauge/_example/ScaleGauge.d.ts +1 -0
  162. package/dist/esm/basicGauge/_example/ScaleGauge.js +31 -0
  163. package/dist/esm/basicGauge/_example/ScaleGauge.js.map +1 -0
  164. package/dist/esm/basicGauge/_example/ScaleGauge.jsx +34 -0
  165. package/dist/esm/basicGauge/_example/ThresholdGauge.d.ts +1 -0
  166. package/dist/esm/basicGauge/_example/ThresholdGauge.js +31 -0
  167. package/dist/esm/basicGauge/_example/ThresholdGauge.js.map +1 -0
  168. package/dist/esm/basicGauge/_example/ThresholdGauge.jsx +34 -0
  169. package/dist/esm/basicGauge/index.d.ts +23 -0
  170. package/dist/esm/basicGauge/index.js +26 -0
  171. package/dist/esm/basicGauge/index.js.map +1 -0
  172. package/dist/esm/basicHBar/README.md +15 -0
  173. package/dist/esm/basicHBar/_example/Basic.d.ts +1 -0
  174. package/dist/esm/basicHBar/_example/Basic.js +49 -0
  175. package/dist/esm/basicHBar/_example/Basic.js.map +1 -0
  176. package/dist/esm/basicHBar/_example/Basic.jsx +56 -0
  177. package/dist/esm/basicHBar/_example/DiskBasic.d.ts +1 -0
  178. package/dist/esm/basicHBar/_example/DiskBasic.js +43 -0
  179. package/dist/esm/basicHBar/_example/DiskBasic.js.map +1 -0
  180. package/dist/esm/basicHBar/_example/DiskBasic.jsx +46 -0
  181. package/dist/esm/basicHBar/_example/LabelRotate.d.ts +1 -0
  182. package/dist/esm/basicHBar/_example/LabelRotate.js +20 -0
  183. package/dist/esm/basicHBar/_example/LabelRotate.js.map +1 -0
  184. package/dist/esm/basicHBar/_example/LabelRotate.jsx +26 -0
  185. package/dist/esm/basicHBar/demo/basic.md +48 -0
  186. package/dist/esm/basicHBar/demo/labelRotate.md +35 -0
  187. package/dist/esm/basicHBar/index.d.ts +19 -0
  188. package/dist/esm/basicHBar/index.js +28 -0
  189. package/dist/esm/basicHBar/index.js.map +1 -0
  190. package/dist/esm/basicHBar/index.md +31 -0
  191. package/dist/esm/basicHBar/style/index.less +0 -0
  192. package/dist/esm/basicHeatMap/README.md +19 -0
  193. package/dist/esm/basicHeatMap/_example/Basic.d.ts +1 -0
  194. package/dist/esm/basicHeatMap/_example/Basic.js +383 -0
  195. package/dist/esm/basicHeatMap/_example/Basic.js.map +1 -0
  196. package/dist/esm/basicHeatMap/_example/Basic.jsx +386 -0
  197. package/dist/esm/basicHeatMap/_example/CustomRoundHeatMap.d.ts +1 -0
  198. package/dist/esm/basicHeatMap/_example/CustomRoundHeatMap.js +1333 -0
  199. package/dist/esm/basicHeatMap/_example/CustomRoundHeatMap.js.map +1 -0
  200. package/dist/esm/basicHeatMap/_example/CustomRoundHeatMap.jsx +1337 -0
  201. package/dist/esm/basicHeatMap/index.d.ts +52 -0
  202. package/dist/esm/basicHeatMap/index.js +26 -0
  203. package/dist/esm/basicHeatMap/index.js.map +1 -0
  204. package/dist/esm/basicLine/README.md +115 -0
  205. package/dist/esm/basicLine/_example/AreaLine.d.ts +1 -0
  206. package/dist/esm/basicLine/_example/AreaLine.js +38 -0
  207. package/dist/esm/basicLine/_example/AreaLine.js.map +1 -0
  208. package/dist/esm/basicLine/_example/AreaLine.jsx +41 -0
  209. package/dist/esm/basicLine/_example/AuxiliaryHLine.d.ts +1 -0
  210. package/dist/esm/basicLine/_example/AuxiliaryHLine.js +71 -0
  211. package/dist/esm/basicLine/_example/AuxiliaryHLine.js.map +1 -0
  212. package/dist/esm/basicLine/_example/AuxiliaryHLine.jsx +74 -0
  213. package/dist/esm/basicLine/_example/AuxiliaryLine.d.ts +1 -0
  214. package/dist/esm/basicLine/_example/AuxiliaryLine.js +53 -0
  215. package/dist/esm/basicLine/_example/AuxiliaryLine.js.map +1 -0
  216. package/dist/esm/basicLine/_example/AuxiliaryLine.jsx +58 -0
  217. package/dist/esm/basicLine/_example/AuxiliaryVLine.d.ts +1 -0
  218. package/dist/esm/basicLine/_example/AuxiliaryVLine.js +71 -0
  219. package/dist/esm/basicLine/_example/AuxiliaryVLine.js.map +1 -0
  220. package/dist/esm/basicLine/_example/AuxiliaryVLine.jsx +75 -0
  221. package/dist/esm/basicLine/_example/AxisFormatter.d.ts +1 -0
  222. package/dist/esm/basicLine/_example/AxisFormatter.js +95 -0
  223. package/dist/esm/basicLine/_example/AxisFormatter.js.map +1 -0
  224. package/dist/esm/basicLine/_example/AxisFormatter.jsx +108 -0
  225. package/dist/esm/basicLine/_example/BarLine.d.ts +1 -0
  226. package/dist/esm/basicLine/_example/BarLine.js +91 -0
  227. package/dist/esm/basicLine/_example/BarLine.js.map +1 -0
  228. package/dist/esm/basicLine/_example/BarLine.jsx +94 -0
  229. package/dist/esm/basicLine/_example/Basic.d.ts +1 -0
  230. package/dist/esm/basicLine/_example/Basic.js +26 -0
  231. package/dist/esm/basicLine/_example/Basic.js.map +1 -0
  232. package/dist/esm/basicLine/_example/Basic.jsx +29 -0
  233. package/dist/esm/basicLine/_example/CustomColorLine.d.ts +1 -0
  234. package/dist/esm/basicLine/_example/CustomColorLine.js +135 -0
  235. package/dist/esm/basicLine/_example/CustomColorLine.js.map +1 -0
  236. package/dist/esm/basicLine/_example/CustomColorLine.jsx +148 -0
  237. package/dist/esm/basicLine/_example/DataZoomLine.d.ts +1 -0
  238. package/dist/esm/basicLine/_example/DataZoomLine.js +1332 -0
  239. package/dist/esm/basicLine/_example/DataZoomLine.js.map +1 -0
  240. package/dist/esm/basicLine/_example/DataZoomLine.jsx +1344 -0
  241. package/dist/esm/basicLine/_example/DottedLine.d.ts +1 -0
  242. package/dist/esm/basicLine/_example/DottedLine.js +105 -0
  243. package/dist/esm/basicLine/_example/DottedLine.js.map +1 -0
  244. package/dist/esm/basicLine/_example/DottedLine.jsx +118 -0
  245. package/dist/esm/basicLine/_example/DualaxisLine.d.ts +1 -0
  246. package/dist/esm/basicLine/_example/DualaxisLine.js +91 -0
  247. package/dist/esm/basicLine/_example/DualaxisLine.js.map +1 -0
  248. package/dist/esm/basicLine/_example/DualaxisLine.jsx +94 -0
  249. package/dist/esm/basicLine/_example/LabelLine.d.ts +1 -0
  250. package/dist/esm/basicLine/_example/LabelLine.js +83 -0
  251. package/dist/esm/basicLine/_example/LabelLine.js.map +1 -0
  252. package/dist/esm/basicLine/_example/LabelLine.jsx +96 -0
  253. package/dist/esm/basicLine/_example/LegendLeftLine.d.ts +1 -0
  254. package/dist/esm/basicLine/_example/LegendLeftLine.js +135 -0
  255. package/dist/esm/basicLine/_example/LegendLeftLine.js.map +1 -0
  256. package/dist/esm/basicLine/_example/LegendLeftLine.jsx +138 -0
  257. package/dist/esm/basicLine/_example/LegendSelectedLine.d.ts +1 -0
  258. package/dist/esm/basicLine/_example/LegendSelectedLine.js +53 -0
  259. package/dist/esm/basicLine/_example/LegendSelectedLine.js.map +1 -0
  260. package/dist/esm/basicLine/_example/LegendSelectedLine.jsx +56 -0
  261. package/dist/esm/basicLine/_example/MarkLine.d.ts +1 -0
  262. package/dist/esm/basicLine/_example/MarkLine.js +1345 -0
  263. package/dist/esm/basicLine/_example/MarkLine.js.map +1 -0
  264. package/dist/esm/basicLine/_example/MarkLine.jsx +1356 -0
  265. package/dist/esm/basicLine/_example/ScatterBarLine.d.ts +1 -0
  266. package/dist/esm/basicLine/_example/ScatterBarLine.js +50 -0
  267. package/dist/esm/basicLine/_example/ScatterBarLine.js.map +1 -0
  268. package/dist/esm/basicLine/_example/ScatterBarLine.jsx +53 -0
  269. package/dist/esm/basicLine/_example/ScatterLine.d.ts +1 -0
  270. package/dist/esm/basicLine/_example/ScatterLine.js +117 -0
  271. package/dist/esm/basicLine/_example/ScatterLine.js.map +1 -0
  272. package/dist/esm/basicLine/_example/ScatterLine.jsx +130 -0
  273. package/dist/esm/basicLine/_example/SmoothLine.d.ts +1 -0
  274. package/dist/esm/basicLine/_example/SmoothLine.js +27 -0
  275. package/dist/esm/basicLine/_example/SmoothLine.js.map +1 -0
  276. package/dist/esm/basicLine/_example/SmoothLine.jsx +30 -0
  277. package/dist/esm/basicLine/_example/StackAreaLine.d.ts +1 -0
  278. package/dist/esm/basicLine/_example/StackAreaLine.js +54 -0
  279. package/dist/esm/basicLine/_example/StackAreaLine.js.map +1 -0
  280. package/dist/esm/basicLine/_example/StackAreaLine.jsx +57 -0
  281. package/dist/esm/basicLine/_example/StepLine.d.ts +1 -0
  282. package/dist/esm/basicLine/_example/StepLine.js +57 -0
  283. package/dist/esm/basicLine/_example/StepLine.js.map +1 -0
  284. package/dist/esm/basicLine/_example/StepLine.jsx +61 -0
  285. package/dist/esm/basicLine/_example/StepLineArea.d.ts +1 -0
  286. package/dist/esm/basicLine/_example/StepLineArea.js +58 -0
  287. package/dist/esm/basicLine/_example/StepLineArea.js.map +1 -0
  288. package/dist/esm/basicLine/_example/StepLineArea.jsx +62 -0
  289. package/dist/esm/basicLine/_example/ThresholdLine.d.ts +1 -0
  290. package/dist/esm/basicLine/_example/ThresholdLine.js +37 -0
  291. package/dist/esm/basicLine/_example/ThresholdLine.js.map +1 -0
  292. package/dist/esm/basicLine/_example/ThresholdLine.jsx +40 -0
  293. package/dist/esm/basicLine/_example/XaxisHideLine.d.ts +1 -0
  294. package/dist/esm/basicLine/_example/XaxisHideLine.js +86 -0
  295. package/dist/esm/basicLine/_example/XaxisHideLine.js.map +1 -0
  296. package/dist/esm/basicLine/_example/XaxisHideLine.jsx +99 -0
  297. package/dist/esm/basicLine/_example/YaxisSetMaxMinLine.d.ts +1 -0
  298. package/dist/esm/basicLine/_example/YaxisSetMaxMinLine.js +165 -0
  299. package/dist/esm/basicLine/_example/YaxisSetMaxMinLine.js.map +1 -0
  300. package/dist/esm/basicLine/_example/YaxisSetMaxMinLine.jsx +177 -0
  301. package/dist/esm/basicLine/_example/YaxisTitleLine.d.ts +1 -0
  302. package/dist/esm/basicLine/_example/YaxisTitleLine.js +1349 -0
  303. package/dist/esm/basicLine/_example/YaxisTitleLine.js.map +1 -0
  304. package/dist/esm/basicLine/_example/YaxisTitleLine.jsx +1361 -0
  305. package/dist/esm/basicLine/_example/ZoombarLine.d.ts +1 -0
  306. package/dist/esm/basicLine/_example/ZoombarLine.js +25 -0
  307. package/dist/esm/basicLine/_example/ZoombarLine.js.map +1 -0
  308. package/dist/esm/basicLine/_example/ZoombarLine.jsx +26 -0
  309. package/dist/esm/basicLine/demo/basic.md +35 -0
  310. package/dist/esm/basicLine/demo/labelRotate.md +34 -0
  311. package/dist/esm/basicLine/demo/linex.md +33 -0
  312. package/dist/esm/basicLine/index.d.ts +59 -0
  313. package/dist/esm/basicLine/index.js +122 -0
  314. package/dist/esm/basicLine/index.js.map +1 -0
  315. package/dist/esm/basicLine/index.md +30 -0
  316. package/dist/esm/basicLine/style/index.less +0 -0
  317. package/dist/esm/basicMap/README.md +31 -0
  318. package/dist/esm/basicMap/_example/Basic.d.ts +1 -0
  319. package/dist/esm/basicMap/_example/Basic.js +84 -0
  320. package/dist/esm/basicMap/_example/Basic.js.map +1 -0
  321. package/dist/esm/basicMap/_example/Basic.jsx +88 -0
  322. package/dist/esm/basicMap/_example/ChinaMap.d.ts +1 -0
  323. package/dist/esm/basicMap/_example/ChinaMap.js +78 -0
  324. package/dist/esm/basicMap/_example/ChinaMap.js.map +1 -0
  325. package/dist/esm/basicMap/_example/ChinaMap.jsx +81 -0
  326. package/dist/esm/basicMap/_example/ChinaMapEx.d.ts +1 -0
  327. package/dist/esm/basicMap/_example/ChinaMapEx.js +78 -0
  328. package/dist/esm/basicMap/_example/ChinaMapEx.js.map +1 -0
  329. package/dist/esm/basicMap/_example/ChinaMapEx.jsx +92 -0
  330. package/dist/esm/basicMap/_example/ChinaMapNodeLink.d.ts +1 -0
  331. package/dist/esm/basicMap/_example/ChinaMapNodeLink.js +138 -0
  332. package/dist/esm/basicMap/_example/ChinaMapNodeLink.js.map +1 -0
  333. package/dist/esm/basicMap/_example/ChinaMapNodeLink.jsx +183 -0
  334. package/dist/esm/basicMap/_example/WorldMap.d.ts +1 -0
  335. package/dist/esm/basicMap/_example/WorldMap.js +49 -0
  336. package/dist/esm/basicMap/_example/WorldMap.js.map +1 -0
  337. package/dist/esm/basicMap/_example/WorldMap.jsx +53 -0
  338. package/dist/esm/basicMap/index.d.ts +40 -0
  339. package/dist/esm/basicMap/index.js +19 -0
  340. package/dist/esm/basicMap/index.js.map +1 -0
  341. package/dist/esm/basicPie/README.md +35 -0
  342. package/dist/esm/basicPie/_example/Basic.d.ts +1 -0
  343. package/dist/esm/basicPie/_example/Basic.js +40 -0
  344. package/dist/esm/basicPie/_example/Basic.js.map +1 -0
  345. package/dist/esm/basicPie/_example/Basic.jsx +43 -0
  346. package/dist/esm/basicPie/_example/DonutPic.d.ts +1 -0
  347. package/dist/esm/basicPie/_example/DonutPic.js +39 -0
  348. package/dist/esm/basicPie/_example/DonutPic.js.map +1 -0
  349. package/dist/esm/basicPie/_example/DonutPic.jsx +42 -0
  350. package/dist/esm/basicPie/_example/LabelPic.d.ts +1 -0
  351. package/dist/esm/basicPie/_example/LabelPic.js +25 -0
  352. package/dist/esm/basicPie/_example/LabelPic.js.map +1 -0
  353. package/dist/esm/basicPie/_example/LabelPic.jsx +27 -0
  354. package/dist/esm/basicPie/_example/RosePic.d.ts +1 -0
  355. package/dist/esm/basicPie/_example/RosePic.js +56 -0
  356. package/dist/esm/basicPie/_example/RosePic.js.map +1 -0
  357. package/dist/esm/basicPie/_example/RosePic.jsx +65 -0
  358. package/dist/esm/basicPie/_example/SpaceDonutPic.d.ts +1 -0
  359. package/dist/esm/basicPie/_example/SpaceDonutPic.js +51 -0
  360. package/dist/esm/basicPie/_example/SpaceDonutPic.js.map +1 -0
  361. package/dist/esm/basicPie/_example/SpaceDonutPic.jsx +59 -0
  362. package/dist/esm/basicPie/_example/SpacePic.d.ts +1 -0
  363. package/dist/esm/basicPie/_example/SpacePic.js +40 -0
  364. package/dist/esm/basicPie/_example/SpacePic.js.map +1 -0
  365. package/dist/esm/basicPie/_example/SpacePic.jsx +43 -0
  366. package/dist/esm/basicPie/demo/basic.md +31 -0
  367. package/dist/esm/basicPie/index.d.ts +47 -0
  368. package/dist/esm/basicPie/index.js +34 -0
  369. package/dist/esm/basicPie/index.js.map +1 -0
  370. package/dist/esm/basicPie/index.md +27 -0
  371. package/dist/esm/basicPie/style/index.less +0 -0
  372. package/dist/esm/basicSankey/README.md +12 -0
  373. package/dist/esm/basicSankey/_example/Basic.d.ts +1 -0
  374. package/dist/esm/basicSankey/_example/Basic.js +75 -0
  375. package/dist/esm/basicSankey/_example/Basic.js.map +1 -0
  376. package/dist/esm/basicSankey/_example/Basic.jsx +79 -0
  377. package/dist/esm/basicSankey/demo/basic.md +88 -0
  378. package/dist/esm/basicSankey/index.d.ts +19 -0
  379. package/dist/esm/basicSankey/index.js +27 -0
  380. package/dist/esm/basicSankey/index.js.map +1 -0
  381. package/dist/esm/basicSankey/index.md +21 -0
  382. package/dist/esm/basicSankey/style/index.less +0 -0
  383. package/dist/esm/basicStat/README.md +23 -0
  384. package/dist/esm/basicStat/_example/Basic.d.ts +1 -0
  385. package/dist/esm/basicStat/_example/Basic.js +399 -0
  386. package/dist/esm/basicStat/_example/Basic.js.map +1 -0
  387. package/dist/esm/basicStat/_example/Basic.jsx +402 -0
  388. package/dist/esm/basicStat/_example/LineStat.d.ts +1 -0
  389. package/dist/esm/basicStat/_example/LineStat.js +399 -0
  390. package/dist/esm/basicStat/_example/LineStat.js.map +1 -0
  391. package/dist/esm/basicStat/_example/LineStat.jsx +402 -0
  392. package/dist/esm/basicStat/_example/ThresholdStat.d.ts +1 -0
  393. package/dist/esm/basicStat/_example/ThresholdStat.js +399 -0
  394. package/dist/esm/basicStat/_example/ThresholdStat.js.map +1 -0
  395. package/dist/esm/basicStat/_example/ThresholdStat.jsx +402 -0
  396. package/dist/esm/basicStat/index.d.ts +44 -0
  397. package/dist/esm/basicStat/index.js +85 -0
  398. package/dist/esm/basicStat/index.js.map +1 -0
  399. package/dist/esm/basicTopo/README.md +39 -0
  400. package/dist/esm/basicTopo/_example/Basic.d.ts +1 -0
  401. package/dist/esm/basicTopo/_example/Basic.js +124 -0
  402. package/dist/esm/basicTopo/_example/Basic.js.map +1 -0
  403. package/dist/esm/basicTopo/_example/Basic.jsx +132 -0
  404. package/dist/esm/basicTopo/_example/GroupLinkTopo.d.ts +1 -0
  405. package/dist/esm/basicTopo/_example/GroupLinkTopo.js +875 -0
  406. package/dist/esm/basicTopo/_example/GroupLinkTopo.js.map +1 -0
  407. package/dist/esm/basicTopo/_example/GroupLinkTopo.jsx +902 -0
  408. package/dist/esm/basicTopo/_example/GroupTopo.d.ts +1 -0
  409. package/dist/esm/basicTopo/_example/GroupTopo.js +193 -0
  410. package/dist/esm/basicTopo/_example/GroupTopo.js.map +1 -0
  411. package/dist/esm/basicTopo/_example/GroupTopo.jsx +221 -0
  412. package/dist/esm/basicTopo/_example/LinkLabel.d.ts +1 -0
  413. package/dist/esm/basicTopo/_example/LinkLabel.js +109 -0
  414. package/dist/esm/basicTopo/_example/LinkLabel.js.map +1 -0
  415. package/dist/esm/basicTopo/_example/LinkLabel.jsx +117 -0
  416. package/dist/esm/basicTopo/_example/NoIconTopo.d.ts +1 -0
  417. package/dist/esm/basicTopo/_example/NoIconTopo.js +203 -0
  418. package/dist/esm/basicTopo/_example/NoIconTopo.js.map +1 -0
  419. package/dist/esm/basicTopo/_example/NoIconTopo.jsx +235 -0
  420. package/dist/esm/basicTopo/_example/PerformanceTest.d.ts +1 -0
  421. package/dist/esm/basicTopo/_example/PerformanceTest.js +155 -0
  422. package/dist/esm/basicTopo/_example/PerformanceTest.js.map +1 -0
  423. package/dist/esm/basicTopo/_example/PerformanceTest.jsx +171 -0
  424. package/dist/esm/basicTopo/_example/VisioLinkTopo.d.ts +1 -0
  425. package/dist/esm/basicTopo/_example/VisioLinkTopo.js +209 -0
  426. package/dist/esm/basicTopo/_example/VisioLinkTopo.js.map +1 -0
  427. package/dist/esm/basicTopo/_example/VisioLinkTopo.jsx +234 -0
  428. package/dist/esm/basicTopo/demo/basic.md +48 -0
  429. package/dist/esm/basicTopo/demo/labelRotate.md +35 -0
  430. package/dist/esm/basicTopo/index.d.ts +40 -0
  431. package/dist/esm/basicTopo/index.js +24 -0
  432. package/dist/esm/basicTopo/index.js.map +1 -0
  433. package/dist/esm/basicTopo/index.md +25 -0
  434. package/dist/esm/basicTopo/style/index.less +0 -0
  435. package/dist/esm/basicTreeMap/basicTreeMap.d.ts +19 -0
  436. package/dist/esm/basicTreeMap/basicTreeMap.js +25 -0
  437. package/dist/esm/basicTreeMap/basicTreeMap.js.map +1 -0
  438. package/dist/esm/common/chart.d.ts +23 -0
  439. package/dist/esm/common/chart.js +56 -0
  440. package/dist/esm/common/chart.js.map +1 -0
  441. package/dist/esm/common/compareObjWithoutFunction.d.ts +1 -0
  442. package/dist/esm/common/compareObjWithoutFunction.js +34 -0
  443. package/dist/esm/common/compareObjWithoutFunction.js.map +1 -0
  444. package/dist/esm/common/functionChart.d.ts +7 -0
  445. package/dist/esm/common/functionChart.js +37 -0
  446. package/dist/esm/common/functionChart.js.map +1 -0
  447. package/dist/esm/common/optionsHelp.d.ts +101 -0
  448. package/dist/esm/common/optionsHelp.js +464 -0
  449. package/dist/esm/common/optionsHelp.js.map +1 -0
  450. package/dist/esm/diskPart/README.md +19 -0
  451. package/dist/esm/diskPart/_example/MultipleDiskPart.d.ts +1 -0
  452. package/dist/esm/diskPart/_example/MultipleDiskPart.js +43 -0
  453. package/dist/esm/diskPart/_example/MultipleDiskPart.js.map +1 -0
  454. package/dist/esm/diskPart/_example/MultipleDiskPart.jsx +46 -0
  455. package/dist/esm/diskPart/_example/SingleDiskPart.d.ts +1 -0
  456. package/dist/esm/diskPart/_example/SingleDiskPart.js +43 -0
  457. package/dist/esm/diskPart/_example/SingleDiskPart.js.map +1 -0
  458. package/dist/esm/diskPart/_example/SingleDiskPart.jsx +46 -0
  459. package/dist/esm/diskPart/index.d.ts +43 -0
  460. package/dist/esm/diskPart/index.js +25 -0
  461. package/dist/esm/diskPart/index.js.map +1 -0
  462. package/dist/esm/index.d.ts +16 -0
  463. package/dist/esm/index.js +17 -0
  464. package/dist/esm/index.js.map +1 -0
  465. package/dist/esm/liquidFillChart/README.md +19 -0
  466. package/dist/esm/liquidFillChart/_example/Basic.d.ts +1 -0
  467. package/dist/esm/liquidFillChart/_example/Basic.js +53 -0
  468. package/dist/esm/liquidFillChart/_example/Basic.js.map +1 -0
  469. package/dist/esm/liquidFillChart/_example/Basic.jsx +56 -0
  470. package/dist/esm/liquidFillChart/_example/Basicx.d.ts +1 -0
  471. package/dist/esm/liquidFillChart/_example/Basicx.js +73 -0
  472. package/dist/esm/liquidFillChart/_example/Basicx.js.map +1 -0
  473. package/dist/esm/liquidFillChart/_example/Basicx.jsx +78 -0
  474. package/dist/esm/liquidFillChart/demo/basic.md +62 -0
  475. package/dist/esm/liquidFillChart/demo/basicx.md +82 -0
  476. package/dist/esm/liquidFillChart/index.d.ts +32 -0
  477. package/dist/esm/liquidFillChart/index.js +28 -0
  478. package/dist/esm/liquidFillChart/index.js.map +1 -0
  479. package/dist/esm/liquidFillChart/index.md +27 -0
  480. package/dist/esm/liquidFillChart/style/index.less +0 -0
  481. package/dist/esm/proxy.d.ts +2 -0
  482. package/dist/esm/proxy.js +3 -0
  483. package/dist/esm/proxy.js.map +1 -0
  484. package/dist/esm/radarChart/README.md +18 -0
  485. package/dist/esm/radarChart/_example/CommonRadarChart.d.ts +1 -0
  486. package/dist/esm/radarChart/_example/CommonRadarChart.js +44 -0
  487. package/dist/esm/radarChart/_example/CommonRadarChart.js.map +1 -0
  488. package/dist/esm/radarChart/_example/CommonRadarChart.jsx +48 -0
  489. package/dist/esm/radarChart/_example/FilledRadarChart.d.ts +1 -0
  490. package/dist/esm/radarChart/_example/FilledRadarChart.js +73 -0
  491. package/dist/esm/radarChart/_example/FilledRadarChart.js.map +1 -0
  492. package/dist/esm/radarChart/_example/FilledRadarChart.jsx +77 -0
  493. package/dist/esm/radarChart/demo/basic.md +53 -0
  494. package/dist/esm/radarChart/demo/basicx.md +83 -0
  495. package/dist/esm/radarChart/index.d.ts +37 -0
  496. package/dist/esm/radarChart/index.js +26 -0
  497. package/dist/esm/radarChart/index.js.map +1 -0
  498. package/dist/esm/radarChart/index.md +28 -0
  499. package/dist/esm/radarChart/style/index.less +0 -0
  500. package/dist/esm/wordcloud/README.md +25 -0
  501. package/dist/esm/wordcloud/_example/Basic.d.ts +1 -0
  502. package/dist/esm/wordcloud/_example/Basic.js +219 -0
  503. package/dist/esm/wordcloud/_example/Basic.js.map +1 -0
  504. package/dist/esm/wordcloud/_example/Basic.jsx +222 -0
  505. package/dist/esm/wordcloud/_example/CenterBasic.d.ts +1 -0
  506. package/dist/esm/wordcloud/_example/CenterBasic.js +220 -0
  507. package/dist/esm/wordcloud/_example/CenterBasic.js.map +1 -0
  508. package/dist/esm/wordcloud/_example/CenterBasic.jsx +223 -0
  509. package/dist/esm/wordcloud/_example/ColorsBasic.d.ts +1 -0
  510. package/dist/esm/wordcloud/_example/ColorsBasic.js +220 -0
  511. package/dist/esm/wordcloud/_example/ColorsBasic.js.map +1 -0
  512. package/dist/esm/wordcloud/_example/ColorsBasic.jsx +224 -0
  513. package/dist/esm/wordcloud/demo/basic.md +39 -0
  514. package/dist/esm/wordcloud/index.d.ts +26 -0
  515. package/dist/esm/wordcloud/index.js +26 -0
  516. package/dist/esm/wordcloud/index.js.map +1 -0
  517. package/dist/esm/wordcloud/index.md +22 -0
  518. package/dist/esm/wordcloud/style/index.less +0 -0
  519. package/dist/tsconfig.tsbuildinfo +1 -0
  520. package/package.json +84 -0
@@ -0,0 +1,3899 @@
1
+ /* eslint-disable max-len */
2
+ import React from 'react';
3
+ import { BasicFlame } from '@tencent/tcharts-component';
4
+
5
+ export default function Basic() {
6
+ const options = {
7
+ dataSource: [
8
+ {
9
+ name: '火焰图test',
10
+ type: 'flame',
11
+ data: {
12
+ children: [
13
+ {
14
+ children: [
15
+ {
16
+ children: [
17
+ {
18
+ children: [
19
+ {
20
+ children: [
21
+ {
22
+ children: [
23
+ {
24
+ children: [
25
+ {
26
+ children: [
27
+ {
28
+ children: [
29
+ {
30
+ children: [
31
+ {
32
+ children: [
33
+ {
34
+ children: [
35
+ {
36
+ children: [
37
+ {
38
+ children: [
39
+ {
40
+ children: [
41
+ {
42
+ children: [
43
+ {
44
+ children: [
45
+ {
46
+ children: [
47
+ {
48
+ children: [
49
+ {
50
+ children: [
51
+ {
52
+ children: [
53
+ {
54
+ children: [
55
+ {
56
+ children: [
57
+ {
58
+ children: [
59
+ {
60
+ children: [
61
+ {
62
+ children: [
63
+ {
64
+ children: [
65
+ {
66
+ children: [
67
+ {
68
+ children: [
69
+ {
70
+ children: [
71
+ {
72
+ children: [
73
+ {
74
+ children: [
75
+ {
76
+ children: [
77
+ {
78
+ children: [
79
+ {
80
+ children: [
81
+ {
82
+ children: [
83
+ {
84
+ children: [
85
+ {
86
+ children: [
87
+ {
88
+ name: '__poll',
89
+ value: 235,
90
+ },
91
+ ],
92
+ name: 'Java_java_net_SocketInputStream_socketRead0',
93
+ value: 235,
94
+ },
95
+ ],
96
+ name: 'java.net.SocketInputStream.socketRead0(Ljava/io/FileDescriptor;[BIII)I',
97
+ value: 235,
98
+ },
99
+ ],
100
+ name: 'java.net.SocketInputStream.socketRead(Ljava/io/FileDescriptor;[BIII)I',
101
+ value: 235,
102
+ },
103
+ ],
104
+ name: 'java.net.SocketInputStream.read([BIII)I',
105
+ value: 235,
106
+ },
107
+ ],
108
+ name: 'java.net.SocketInputStream.read([BII)I',
109
+ value: 235,
110
+ },
111
+ ],
112
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.streamRead([BII)I',
113
+ value: 235,
114
+ },
115
+ ],
116
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.fillBuffer()I',
117
+ value: 235,
118
+ },
119
+ ],
120
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.readLine(Lorg/apache/http/util/CharArrayBuffer;)I',
121
+ value: 235,
122
+ },
123
+ ],
124
+ name: 'org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(Lorg/apache/http/io/SessionInputBuffer;)Lorg/apache/http/HttpResponse;',
125
+ value: 235,
126
+ },
127
+ ],
128
+ name: 'org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(Lorg/apache/http/io/SessionInputBuffer;)Lorg/apache/http/HttpMessage;',
129
+ value: 235,
130
+ },
131
+ ],
132
+ name: 'org.apache.http.impl.io.AbstractMessageParser.parse()Lorg/apache/http/HttpMessage;',
133
+ value: 235,
134
+ },
135
+ ],
136
+ name: 'org.apache.http.impl.DefaultBHttpClientConnection.receiveResponseHeader()Lorg/apache/http/HttpResponse;',
137
+ value: 235,
138
+ },
139
+ ],
140
+ name: 'org.apache.http.impl.conn.CPoolProxy.receiveResponseHeader()Lorg/apache/http/HttpResponse;',
141
+ value: 235,
142
+ },
143
+ ],
144
+ name: 'org.apache.http.protocol.HttpRequestExecutor.doReceiveResponse(Lorg/apache/http/HttpRequest;Lorg/apache/http/HttpClientConnection;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/HttpResponse;',
145
+ value: 235,
146
+ },
147
+ ],
148
+ name: 'org.apache.http.protocol.HttpRequestExecutor.execute(Lorg/apache/http/HttpRequest;Lorg/apache/http/HttpClientConnection;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/HttpResponse;',
149
+ value: 235,
150
+ },
151
+ ],
152
+ name: 'org.apache.http.impl.execchain.MainClientExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
153
+ value: 235,
154
+ },
155
+ ],
156
+ name: 'org.apache.http.impl.execchain.ProtocolExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
157
+ value: 235,
158
+ },
159
+ ],
160
+ name: 'org.apache.http.impl.execchain.RetryExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
161
+ value: 235,
162
+ },
163
+ ],
164
+ name: 'org.apache.http.impl.execchain.RedirectExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
165
+ value: 235,
166
+ },
167
+ ],
168
+ name: 'org.apache.http.impl.client.InternalHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
169
+ value: 235,
170
+ },
171
+ ],
172
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
173
+ value: 235,
174
+ },
175
+ ],
176
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/client/ResponseHandler;Lorg/apache/http/protocol/HttpContext;)Ljava/lang/Object;',
177
+ value: 235,
178
+ },
179
+ ],
180
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/client/methods/HttpUriRequest;Lorg/apache/http/client/ResponseHandler;Lorg/apache/http/protocol/HttpContext;)Ljava/lang/Object;',
181
+ value: 235,
182
+ },
183
+ ],
184
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/client/methods/HttpUriRequest;Lorg/apache/http/client/ResponseHandler;)Ljava/lang/Object;',
185
+ value: 235,
186
+ },
187
+ ],
188
+ name: 'com.ecwid.consul.transport.AbstractHttpTransport.executeRequest(Lorg/apache/http/client/methods/HttpUriRequest;)Lcom/ecwid/consul/transport/RawResponse;',
189
+ value: 235,
190
+ },
191
+ ],
192
+ name: 'com.ecwid.consul.transport.AbstractHttpTransport.makeGetRequest(Ljava/lang/String;)Lcom/ecwid/consul/transport/RawResponse;',
193
+ value: 235,
194
+ },
195
+ ],
196
+ name: 'com.ecwid.consul.v1.ConsulRawClient.makeGetRequest(Ljava/lang/String;Ljava/util/List;)Lcom/ecwid/consul/transport/RawResponse;',
197
+ value: 235,
198
+ },
199
+ ],
200
+ name: 'com.ecwid.consul.v1.ConsulRawClient.makeGetRequest(Ljava/lang/String;[Lcom/ecwid/consul/UrlParameters;)Lcom/ecwid/consul/transport/RawResponse;',
201
+ value: 235,
202
+ },
203
+ ],
204
+ name: 'com.ecwid.consul.v1.kv.KeyValueConsulClient.getKVValue(Ljava/lang/String;Ljava/lang/String;Lcom/ecwid/consul/v1/QueryParams;)Lcom/ecwid/consul/v1/Response;',
205
+ value: 235,
206
+ },
207
+ ],
208
+ name: 'com.ecwid.consul.v1.ConsulClient.getKVValue(Ljava/lang/String;Ljava/lang/String;Lcom/ecwid/consul/v1/QueryParams;)Lcom/ecwid/consul/v1/Response;',
209
+ value: 235,
210
+ },
211
+ ],
212
+ name: 'com.tencent.tsf.atom.config.impl.consul.ConsulConfig$ValueChangeNotifier.processValue()V',
213
+ value: 235,
214
+ },
215
+ ],
216
+ name: 'com.tencent.tsf.atom.config.impl.consul.ConsulConfig$ValueChangeNotifier.run()V',
217
+ value: 235,
218
+ },
219
+ {
220
+ children: [
221
+ {
222
+ children: [
223
+ {
224
+ children: [
225
+ {
226
+ children: [
227
+ {
228
+ children: [
229
+ {
230
+ name: '__pthread_cond_timedwait',
231
+ value: 10,
232
+ },
233
+ ],
234
+ name: 'os::sleep(Thread*, long, bool)',
235
+ value: 10,
236
+ },
237
+ ],
238
+ name: 'JVM_Sleep',
239
+ value: 10,
240
+ },
241
+ ],
242
+ name: 'java.lang.Thread.sleep(J)V',
243
+ value: 10,
244
+ },
245
+ ],
246
+ name: 'com.tencent.tsf.atom.common.util.TimeUtil.silentlySleep(J)V',
247
+ value: 10,
248
+ },
249
+ ],
250
+ name: 'com.tencent.tsf.atom.config.impl.consul.ConsulConfig$DirChangeNotifier.run()V',
251
+ value: 10,
252
+ },
253
+ ],
254
+ name: 'java.util.concurrent.Executors$RunnableAdapter.call()Ljava/lang/Object;',
255
+ value: 245,
256
+ },
257
+ ],
258
+ name: 'java.util.concurrent.FutureTask.run()V',
259
+ value: 245,
260
+ },
261
+ {
262
+ children: [
263
+ {
264
+ children: [
265
+ {
266
+ children: [
267
+ {
268
+ children: [
269
+ {
270
+ children: [
271
+ {
272
+ children: [
273
+ {
274
+ children: [
275
+ {
276
+ children: [
277
+ {
278
+ children: [
279
+ {
280
+ children: [
281
+ {
282
+ children: [
283
+ {
284
+ children: [
285
+ {
286
+ children: [
287
+ {
288
+ children: [
289
+ {
290
+ children: [
291
+ {
292
+ children: [
293
+ {
294
+ children: [
295
+ {
296
+ children: [
297
+ {
298
+ children: [
299
+ {
300
+ children: [
301
+ {
302
+ children: [
303
+ {
304
+ children: [
305
+ {
306
+ children: [
307
+ {
308
+ children: [
309
+ {
310
+ children: [
311
+ {
312
+ children: [
313
+ {
314
+ children: [
315
+ {
316
+ children: [
317
+ {
318
+ children: [
319
+ {
320
+ children: [
321
+ {
322
+ children: [
323
+ {
324
+ children: [
325
+ {
326
+ children: [
327
+ {
328
+ children: [
329
+ {
330
+ children: [
331
+ {
332
+ children: [
333
+ {
334
+ children: [
335
+ {
336
+ children: [
337
+ {
338
+ name: '__poll',
339
+ value: 120,
340
+ },
341
+ ],
342
+ name: 'Java_java_net_SocketInputStream_socketRead0',
343
+ value: 120,
344
+ },
345
+ ],
346
+ name: 'java.net.SocketInputStream.socketRead0(Ljava/io/FileDescriptor;[BIII)I',
347
+ value: 120,
348
+ },
349
+ ],
350
+ name: 'java.net.SocketInputStream.socketRead(Ljava/io/FileDescriptor;[BIII)I',
351
+ value: 120,
352
+ },
353
+ ],
354
+ name: 'java.net.SocketInputStream.read([BIII)I',
355
+ value: 120,
356
+ },
357
+ ],
358
+ name: 'java.net.SocketInputStream.read([BII)I',
359
+ value: 120,
360
+ },
361
+ ],
362
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.streamRead([BII)I',
363
+ value: 120,
364
+ },
365
+ ],
366
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.fillBuffer()I',
367
+ value: 120,
368
+ },
369
+ ],
370
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.readLine(Lorg/apache/http/util/CharArrayBuffer;)I',
371
+ value: 120,
372
+ },
373
+ ],
374
+ name: 'org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(Lorg/apache/http/io/SessionInputBuffer;)Lorg/apache/http/HttpResponse;',
375
+ value: 120,
376
+ },
377
+ ],
378
+ name: 'org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(Lorg/apache/http/io/SessionInputBuffer;)Lorg/apache/http/HttpMessage;',
379
+ value: 120,
380
+ },
381
+ ],
382
+ name: 'org.apache.http.impl.io.AbstractMessageParser.parse()Lorg/apache/http/HttpMessage;',
383
+ value: 120,
384
+ },
385
+ ],
386
+ name: 'org.apache.http.impl.DefaultBHttpClientConnection.receiveResponseHeader()Lorg/apache/http/HttpResponse;',
387
+ value: 120,
388
+ },
389
+ ],
390
+ name: 'org.apache.http.impl.conn.CPoolProxy.receiveResponseHeader()Lorg/apache/http/HttpResponse;',
391
+ value: 120,
392
+ },
393
+ ],
394
+ name: 'org.apache.http.protocol.HttpRequestExecutor.doReceiveResponse(Lorg/apache/http/HttpRequest;Lorg/apache/http/HttpClientConnection;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/HttpResponse;',
395
+ value: 120,
396
+ },
397
+ ],
398
+ name: 'org.apache.http.protocol.HttpRequestExecutor.execute(Lorg/apache/http/HttpRequest;Lorg/apache/http/HttpClientConnection;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/HttpResponse;',
399
+ value: 120,
400
+ },
401
+ ],
402
+ name: 'org.apache.http.impl.execchain.MainClientExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
403
+ value: 120,
404
+ },
405
+ ],
406
+ name: 'org.apache.http.impl.execchain.ProtocolExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
407
+ value: 120,
408
+ },
409
+ ],
410
+ name: 'org.apache.http.impl.execchain.RetryExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
411
+ value: 120,
412
+ },
413
+ ],
414
+ name: 'org.apache.http.impl.execchain.RedirectExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
415
+ value: 120,
416
+ },
417
+ ],
418
+ name: 'org.apache.http.impl.client.InternalHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
419
+ value: 120,
420
+ },
421
+ ],
422
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
423
+ value: 120,
424
+ },
425
+ ],
426
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/client/ResponseHandler;Lorg/apache/http/protocol/HttpContext;)Ljava/lang/Object;',
427
+ value: 120,
428
+ },
429
+ ],
430
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/client/methods/HttpUriRequest;Lorg/apache/http/client/ResponseHandler;Lorg/apache/http/protocol/HttpContext;)Ljava/lang/Object;',
431
+ value: 120,
432
+ },
433
+ ],
434
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/client/methods/HttpUriRequest;Lorg/apache/http/client/ResponseHandler;)Ljava/lang/Object;',
435
+ value: 120,
436
+ },
437
+ ],
438
+ name: 'com.ecwid.consul.transport.AbstractHttpTransport.executeRequest(Lorg/apache/http/client/methods/HttpUriRequest;)Lcom/ecwid/consul/transport/RawResponse;',
439
+ value: 120,
440
+ },
441
+ ],
442
+ name: 'com.ecwid.consul.transport.AbstractHttpTransport.makeGetRequest(Ljava/lang/String;)Lcom/ecwid/consul/transport/RawResponse;',
443
+ value: 120,
444
+ },
445
+ ],
446
+ name: 'com.ecwid.consul.v1.ConsulRawClient.makeGetRequest(Ljava/lang/String;Ljava/util/List;)Lcom/ecwid/consul/transport/RawResponse;',
447
+ value: 120,
448
+ },
449
+ ],
450
+ name: 'com.ecwid.consul.v1.ConsulRawClient.makeGetRequest(Ljava/lang/String;[Lcom/ecwid/consul/UrlParameters;)Lcom/ecwid/consul/transport/RawResponse;',
451
+ value: 120,
452
+ },
453
+ ],
454
+ name: 'com.ecwid.consul.v1.kv.KeyValueConsulClient.getKVValues(Ljava/lang/String;Ljava/lang/String;Lcom/ecwid/consul/v1/QueryParams;)Lcom/ecwid/consul/v1/Response;',
455
+ value: 120,
456
+ },
457
+ ],
458
+ name: 'com.ecwid.consul.v1.ConsulClient.getKVValues(Ljava/lang/String;Ljava/lang/String;Lcom/ecwid/consul/v1/QueryParams;)Lcom/ecwid/consul/v1/Response;',
459
+ value: 120,
460
+ },
461
+ ],
462
+ name: 'com.tencent.tsf.consul.config.ConfigWatch.watchConfig(Ljava/lang/String;)V',
463
+ value: 120,
464
+ },
465
+ ],
466
+ name: 'com.tencent.tsf.consul.config.ConfigWatch.watchApplicationConfig()V',
467
+ value: 120,
468
+ },
469
+ ],
470
+ name: 'com.tencent.tsf.consul.config.ConfigWatch$$Lambda$1209.509557834.run()V',
471
+ value: 120,
472
+ },
473
+ ],
474
+ name: 'org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run()V',
475
+ value: 120,
476
+ },
477
+ ],
478
+ name: 'java.util.concurrent.Executors$RunnableAdapter.call()Ljava/lang/Object;',
479
+ value: 120,
480
+ },
481
+ ],
482
+ name: 'java.util.concurrent.FutureTask.runAndReset()Z',
483
+ value: 120,
484
+ },
485
+ ],
486
+ name: 'java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(Ljava/util/concurrent/ScheduledThreadPoolExecutor$ScheduledFutureTask;)Z',
487
+ value: 120,
488
+ },
489
+ ],
490
+ name: 'java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run()V',
491
+ value: 120,
492
+ },
493
+ {
494
+ children: [
495
+ {
496
+ children: [
497
+ {
498
+ children: [
499
+ {
500
+ children: [
501
+ {
502
+ children: [
503
+ {
504
+ children: [
505
+ {
506
+ name: 'pthread_cond_wait@@GLIBC_2.3.2',
507
+ value: 960,
508
+ },
509
+ ],
510
+ name: 'Unsafe_Park',
511
+ value: 960,
512
+ },
513
+ ],
514
+ name: 'sun.misc.Unsafe.park(ZJ)V',
515
+ value: 960,
516
+ },
517
+ ],
518
+ name: 'java.util.concurrent.locks.LockSupport.park(Ljava/lang/Object;)V',
519
+ value: 960,
520
+ },
521
+ ],
522
+ name: 'java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await()V',
523
+ value: 960,
524
+ },
525
+ ],
526
+ name: 'java.util.concurrent.LinkedBlockingQueue.take()Ljava/lang/Object;',
527
+ value: 960,
528
+ },
529
+ ],
530
+ name: 'java.util.concurrent.ThreadPoolExecutor.getTask()Ljava/lang/Runnable;',
531
+ value: 960,
532
+ },
533
+ ],
534
+ name: 'java.util.concurrent.ThreadPoolExecutor.runWorker(Ljava/util/concurrent/ThreadPoolExecutor$Worker;)V',
535
+ value: 1325,
536
+ },
537
+ ],
538
+ name: 'java.util.concurrent.ThreadPoolExecutor$Worker.run()V',
539
+ value: 1325,
540
+ },
541
+ {
542
+ children: [
543
+ {
544
+ children: [
545
+ {
546
+ children: [
547
+ {
548
+ children: [
549
+ {
550
+ children: [
551
+ {
552
+ children: [
553
+ {
554
+ name: 'epoll_wait',
555
+ value: 120,
556
+ },
557
+ ],
558
+ name: 'sun.nio.ch.EPollArrayWrapper.epollWait(JIJI)I',
559
+ value: 120,
560
+ },
561
+ ],
562
+ name: 'sun.nio.ch.EPollArrayWrapper.poll(J)I',
563
+ value: 120,
564
+ },
565
+ ],
566
+ name: 'sun.nio.ch.EPollSelectorImpl.doSelect(J)I',
567
+ value: 120,
568
+ },
569
+ ],
570
+ name: 'sun.nio.ch.SelectorImpl.lockAndDoSelect(J)I',
571
+ value: 120,
572
+ },
573
+ ],
574
+ name: 'sun.nio.ch.SelectorImpl.select(J)I',
575
+ value: 120,
576
+ },
577
+ ],
578
+ name: 'org.apache.tomcat.util.net.NioEndpoint$Poller.run()V',
579
+ value: 120,
580
+ },
581
+ ],
582
+ name: 'java.lang.Thread.run()V',
583
+ value: 1445,
584
+ },
585
+ {
586
+ children: [
587
+ {
588
+ children: [
589
+ {
590
+ children: [
591
+ {
592
+ children: [
593
+ {
594
+ children: [
595
+ {
596
+ children: [
597
+ {
598
+ name: '__pthread_cond_timedwait',
599
+ value: 120,
600
+ },
601
+ ],
602
+ name: 'Monitor::IWait(Thread*, long)',
603
+ value: 120,
604
+ },
605
+ ],
606
+ name: 'Monitor::wait(bool, long, bool)',
607
+ value: 120,
608
+ },
609
+ ],
610
+ name: 'VMThread::loop()',
611
+ value: 120,
612
+ },
613
+ ],
614
+ name: 'VMThread::run()',
615
+ value: 120,
616
+ },
617
+ ],
618
+ name: 'java_start(Thread*)',
619
+ value: 120,
620
+ },
621
+ ],
622
+ name: 'start_thread',
623
+ value: 120,
624
+ },
625
+ {
626
+ children: [
627
+ {
628
+ children: [
629
+ {
630
+ children: [
631
+ {
632
+ children: [
633
+ {
634
+ children: [
635
+ {
636
+ children: [
637
+ {
638
+ children: [
639
+ {
640
+ children: [
641
+ {
642
+ children: [
643
+ {
644
+ children: [
645
+ {
646
+ name: '__pthread_cond_timedwait',
647
+ value: 240,
648
+ },
649
+ ],
650
+ name: 'Unsafe_Park',
651
+ value: 240,
652
+ },
653
+ ],
654
+ name: 'sun.misc.Unsafe.park(ZJ)V',
655
+ value: 240,
656
+ },
657
+ ],
658
+ name: 'java.util.concurrent.locks.LockSupport.parkNanos(Ljava/lang/Object;J)V',
659
+ value: 240,
660
+ },
661
+ ],
662
+ name: 'java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(Ljava/util/concurrent/SynchronousQueue$TransferStack$SNode;ZJ)Ljava/util/concurrent/SynchronousQueue$TransferStack$SNode;',
663
+ value: 240,
664
+ },
665
+ ],
666
+ name: 'java.util.concurrent.SynchronousQueue$TransferStack.transfer(Ljava/lang/Object;ZJ)Ljava/lang/Object;',
667
+ value: 240,
668
+ },
669
+ ],
670
+ name: 'java.util.concurrent.SynchronousQueue.poll(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;',
671
+ value: 240,
672
+ },
673
+ ],
674
+ name: 'java.util.concurrent.ThreadPoolExecutor.getTask()Ljava/lang/Runnable;',
675
+ value: 240,
676
+ },
677
+ ],
678
+ name: 'java.util.concurrent.ThreadPoolExecutor.runWorker(Ljava/util/concurrent/ThreadPoolExecutor$Worker;)V',
679
+ value: 240,
680
+ },
681
+ ],
682
+ name: 'java.util.concurrent.ThreadPoolExecutor$Worker.run()V',
683
+ value: 240,
684
+ },
685
+ {
686
+ children: [
687
+ {
688
+ children: [
689
+ {
690
+ children: [
691
+ {
692
+ children: [
693
+ {
694
+ children: [
695
+ {
696
+ children: [
697
+ {
698
+ name: 'accept',
699
+ value: 120,
700
+ },
701
+ ],
702
+ name: 'sun.nio.ch.ServerSocketChannelImpl.accept0(Ljava/io/FileDescriptor;Ljava/io/FileDescriptor;[Ljava/net/InetSocketAddress;)I',
703
+ value: 120,
704
+ },
705
+ ],
706
+ name: 'sun.nio.ch.ServerSocketChannelImpl.accept(Ljava/io/FileDescriptor;Ljava/io/FileDescriptor;[Ljava/net/InetSocketAddress;)I',
707
+ value: 120,
708
+ },
709
+ ],
710
+ name: 'sun.nio.ch.ServerSocketChannelImpl.accept()Ljava/nio/channels/SocketChannel;',
711
+ value: 120,
712
+ },
713
+ ],
714
+ name: 'org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept()Ljava/nio/channels/SocketChannel;',
715
+ value: 120,
716
+ },
717
+ ],
718
+ name: 'org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept()Ljava/lang/Object;',
719
+ value: 120,
720
+ },
721
+ ],
722
+ name: 'org.apache.tomcat.util.net.Acceptor.run()V',
723
+ value: 120,
724
+ },
725
+ {
726
+ children: [
727
+ {
728
+ children: [
729
+ {
730
+ children: [
731
+ {
732
+ children: [
733
+ {
734
+ children: [
735
+ {
736
+ children: [
737
+ {
738
+ children: [
739
+ {
740
+ children: [
741
+ {
742
+ children: [
743
+ {
744
+ children: [
745
+ {
746
+ children: [
747
+ {
748
+ name: 'pthread_cond_wait@@GLIBC_2.3.2',
749
+ value: 1200,
750
+ },
751
+ ],
752
+ name: 'Unsafe_Park',
753
+ value: 1200,
754
+ },
755
+ ],
756
+ name: 'sun.misc.Unsafe.park(ZJ)V',
757
+ value: 1200,
758
+ },
759
+ ],
760
+ name: 'java.util.concurrent.locks.LockSupport.park(Ljava/lang/Object;)V',
761
+ value: 1200,
762
+ },
763
+ ],
764
+ name: 'java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await()V',
765
+ value: 1200,
766
+ },
767
+ ],
768
+ name: 'java.util.concurrent.LinkedBlockingQueue.take()Ljava/lang/Object;',
769
+ value: 1200,
770
+ },
771
+ ],
772
+ name: 'org.apache.tomcat.util.threads.TaskQueue.take()Ljava/lang/Runnable;',
773
+ value: 1200,
774
+ },
775
+ ],
776
+ name: 'org.apache.tomcat.util.threads.TaskQueue.take()Ljava/lang/Object;',
777
+ value: 1200,
778
+ },
779
+ ],
780
+ name: 'java.util.concurrent.ThreadPoolExecutor.getTask()Ljava/lang/Runnable;',
781
+ value: 1200,
782
+ },
783
+ ],
784
+ name: 'java.util.concurrent.ThreadPoolExecutor.runWorker(Ljava/util/concurrent/ThreadPoolExecutor$Worker;)V',
785
+ value: 1200,
786
+ },
787
+ ],
788
+ name: 'java.util.concurrent.ThreadPoolExecutor$Worker.run()V',
789
+ value: 1200,
790
+ },
791
+ ],
792
+ name: 'org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run()V',
793
+ value: 1200,
794
+ },
795
+ {
796
+ children: [
797
+ {
798
+ children: [
799
+ {
800
+ children: [
801
+ {
802
+ children: [
803
+ {
804
+ children: [
805
+ {
806
+ children: [
807
+ {
808
+ children: [
809
+ {
810
+ children: [
811
+ {
812
+ children: [
813
+ {
814
+ children: [
815
+ {
816
+ children: [
817
+ {
818
+ children: [
819
+ {
820
+ children: [
821
+ {
822
+ children: [
823
+ {
824
+ children: [
825
+ {
826
+ children: [
827
+ {
828
+ children: [
829
+ {
830
+ children: [
831
+ {
832
+ children: [
833
+ {
834
+ children: [
835
+ {
836
+ children: [
837
+ {
838
+ children: [
839
+ {
840
+ children: [
841
+ {
842
+ children: [
843
+ {
844
+ children: [
845
+ {
846
+ children: [
847
+ {
848
+ children: [
849
+ {
850
+ children: [
851
+ {
852
+ children: [
853
+ {
854
+ children: [
855
+ {
856
+ children: [
857
+ {
858
+ children: [
859
+ {
860
+ children: [
861
+ {
862
+ children: [
863
+ {
864
+ children: [
865
+ {
866
+ children: [
867
+ {
868
+ name: '__poll',
869
+ value: 230,
870
+ },
871
+ ],
872
+ name: 'Java_java_net_SocketInputStream_socketRead0',
873
+ value: 230,
874
+ },
875
+ ],
876
+ name: 'java.net.SocketInputStream.socketRead0(Ljava/io/FileDescriptor;[BIII)I',
877
+ value: 230,
878
+ },
879
+ ],
880
+ name: 'java.net.SocketInputStream.socketRead(Ljava/io/FileDescriptor;[BIII)I',
881
+ value: 230,
882
+ },
883
+ ],
884
+ name: 'java.net.SocketInputStream.read([BIII)I',
885
+ value: 230,
886
+ },
887
+ ],
888
+ name: 'java.net.SocketInputStream.read([BII)I',
889
+ value: 230,
890
+ },
891
+ ],
892
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.streamRead([BII)I',
893
+ value: 230,
894
+ },
895
+ ],
896
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.fillBuffer()I',
897
+ value: 230,
898
+ },
899
+ ],
900
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.readLine(Lorg/apache/http/util/CharArrayBuffer;)I',
901
+ value: 230,
902
+ },
903
+ ],
904
+ name: 'org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(Lorg/apache/http/io/SessionInputBuffer;)Lorg/apache/http/HttpResponse;',
905
+ value: 230,
906
+ },
907
+ ],
908
+ name: 'org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(Lorg/apache/http/io/SessionInputBuffer;)Lorg/apache/http/HttpMessage;',
909
+ value: 230,
910
+ },
911
+ ],
912
+ name: 'org.apache.http.impl.io.AbstractMessageParser.parse()Lorg/apache/http/HttpMessage;',
913
+ value: 230,
914
+ },
915
+ ],
916
+ name: 'org.apache.http.impl.DefaultBHttpClientConnection.receiveResponseHeader()Lorg/apache/http/HttpResponse;',
917
+ value: 230,
918
+ },
919
+ ],
920
+ name: 'org.apache.http.impl.conn.CPoolProxy.receiveResponseHeader()Lorg/apache/http/HttpResponse;',
921
+ value: 230,
922
+ },
923
+ ],
924
+ name: 'org.apache.http.protocol.HttpRequestExecutor.doReceiveResponse(Lorg/apache/http/HttpRequest;Lorg/apache/http/HttpClientConnection;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/HttpResponse;',
925
+ value: 230,
926
+ },
927
+ ],
928
+ name: 'org.apache.http.protocol.HttpRequestExecutor.execute(Lorg/apache/http/HttpRequest;Lorg/apache/http/HttpClientConnection;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/HttpResponse;',
929
+ value: 230,
930
+ },
931
+ ],
932
+ name: 'org.apache.http.impl.execchain.MainClientExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
933
+ value: 230,
934
+ },
935
+ ],
936
+ name: 'org.apache.http.impl.execchain.ProtocolExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
937
+ value: 230,
938
+ },
939
+ ],
940
+ name: 'org.apache.http.impl.execchain.RetryExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
941
+ value: 230,
942
+ },
943
+ ],
944
+ name: 'org.apache.http.impl.execchain.RedirectExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
945
+ value: 230,
946
+ },
947
+ ],
948
+ name: 'org.apache.http.impl.client.InternalHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
949
+ value: 230,
950
+ },
951
+ ],
952
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
953
+ value: 230,
954
+ },
955
+ ],
956
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/client/ResponseHandler;Lorg/apache/http/protocol/HttpContext;)Ljava/lang/Object;',
957
+ value: 230,
958
+ },
959
+ ],
960
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/client/methods/HttpUriRequest;Lorg/apache/http/client/ResponseHandler;Lorg/apache/http/protocol/HttpContext;)Ljava/lang/Object;',
961
+ value: 230,
962
+ },
963
+ ],
964
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/client/methods/HttpUriRequest;Lorg/apache/http/client/ResponseHandler;)Ljava/lang/Object;',
965
+ value: 230,
966
+ },
967
+ ],
968
+ name: 'com.ecwid.consul.transport.AbstractHttpTransport.executeRequest(Lorg/apache/http/client/methods/HttpUriRequest;)Lcom/ecwid/consul/transport/RawResponse;',
969
+ value: 230,
970
+ },
971
+ ],
972
+ name: 'com.ecwid.consul.transport.AbstractHttpTransport.makeGetRequest(Ljava/lang/String;)Lcom/ecwid/consul/transport/RawResponse;',
973
+ value: 230,
974
+ },
975
+ ],
976
+ name: 'com.ecwid.consul.v1.ConsulRawClient.makeGetRequest(Ljava/lang/String;Ljava/util/List;)Lcom/ecwid/consul/transport/RawResponse;',
977
+ value: 230,
978
+ },
979
+ ],
980
+ name: 'com.ecwid.consul.v1.ConsulRawClient.makeGetRequest(Ljava/lang/String;[Lcom/ecwid/consul/UrlParameters;)Lcom/ecwid/consul/transport/RawResponse;',
981
+ value: 230,
982
+ },
983
+ ],
984
+ name: 'com.ecwid.consul.v1.kv.KeyValueConsulClient.getKVValues(Ljava/lang/String;Ljava/lang/String;Lcom/ecwid/consul/v1/QueryParams;)Lcom/ecwid/consul/v1/Response;',
985
+ value: 230,
986
+ },
987
+ ],
988
+ name: 'com.ecwid.consul.v1.ConsulClient.getKVValues(Ljava/lang/String;Ljava/lang/String;Lcom/ecwid/consul/v1/QueryParams;)Lcom/ecwid/consul/v1/Response;',
989
+ value: 230,
990
+ },
991
+ ],
992
+ name: 'com.tencent.tsf.atom.config.impl.consul.ConsulConfig$DirChangeNotifier.processDir()V',
993
+ value: 230,
994
+ },
995
+ ],
996
+ name: 'com.tencent.tsf.atom.config.impl.consul.ConsulConfig$DirChangeNotifier.run()V',
997
+ value: 230,
998
+ },
999
+ ],
1000
+ name: 'java.util.concurrent.Executors$RunnableAdapter.call()Ljava/lang/Object;',
1001
+ value: 230,
1002
+ },
1003
+ ],
1004
+ name: 'java.util.concurrent.FutureTask.run()V',
1005
+ value: 230,
1006
+ },
1007
+ ],
1008
+ name: 'java.util.concurrent.ThreadPoolExecutor.runWorker(Ljava/util/concurrent/ThreadPoolExecutor$Worker;)V',
1009
+ value: 230,
1010
+ },
1011
+ ],
1012
+ name: 'java.util.concurrent.ThreadPoolExecutor$Worker.run()V',
1013
+ value: 230,
1014
+ },
1015
+ ],
1016
+ name: 'java.lang.Thread.run()V',
1017
+ value: 1790,
1018
+ },
1019
+ {
1020
+ children: [
1021
+ {
1022
+ children: [
1023
+ {
1024
+ children: [
1025
+ {
1026
+ children: [
1027
+ {
1028
+ children: [
1029
+ {
1030
+ children: [
1031
+ {
1032
+ name: 'pthread_cond_wait@@GLIBC_2.3.2',
1033
+ value: 242,
1034
+ },
1035
+ ],
1036
+ name: 'Monitor::IWait(Thread*, long)',
1037
+ value: 242,
1038
+ },
1039
+ ],
1040
+ name: 'Monitor::wait(bool, long, bool)',
1041
+ value: 242,
1042
+ },
1043
+ ],
1044
+ name: 'GCTaskManager::get_task(unsigned int)',
1045
+ value: 242,
1046
+ },
1047
+ ],
1048
+ name: 'GCTaskThread::run()',
1049
+ value: 242,
1050
+ },
1051
+ ],
1052
+ name: 'java_start(Thread*)',
1053
+ value: 242,
1054
+ },
1055
+ ],
1056
+ name: 'start_thread',
1057
+ value: 242,
1058
+ },
1059
+ {
1060
+ children: [
1061
+ {
1062
+ children: [
1063
+ {
1064
+ children: [
1065
+ {
1066
+ children: [
1067
+ {
1068
+ children: [
1069
+ {
1070
+ children: [
1071
+ {
1072
+ children: [
1073
+ {
1074
+ children: [
1075
+ {
1076
+ children: [
1077
+ {
1078
+ children: [
1079
+ {
1080
+ name: '__pthread_cond_timedwait',
1081
+ value: 5,
1082
+ },
1083
+ ],
1084
+ name: 'os::sleep(Thread*, long, bool)',
1085
+ value: 5,
1086
+ },
1087
+ ],
1088
+ name: 'JVM_Sleep',
1089
+ value: 5,
1090
+ },
1091
+ ],
1092
+ name: 'java.lang.Thread.sleep(J)V',
1093
+ value: 5,
1094
+ },
1095
+ ],
1096
+ name: 'com.tencent.tsf.atom.common.util.TimeUtil.silentlySleep(J)V',
1097
+ value: 5,
1098
+ },
1099
+ ],
1100
+ name: 'com.tencent.tsf.atom.config.impl.consul.ConsulConfig$ValueChangeNotifier.run()V',
1101
+ value: 5,
1102
+ },
1103
+ ],
1104
+ name: 'java.util.concurrent.Executors$RunnableAdapter.call()Ljava/lang/Object;',
1105
+ value: 5,
1106
+ },
1107
+ ],
1108
+ name: 'java.util.concurrent.FutureTask.run()V',
1109
+ value: 5,
1110
+ },
1111
+ {
1112
+ children: [
1113
+ {
1114
+ children: [
1115
+ {
1116
+ children: [
1117
+ {
1118
+ children: [
1119
+ {
1120
+ children: [
1121
+ {
1122
+ children: [
1123
+ {
1124
+ children: [
1125
+ {
1126
+ children: [
1127
+ {
1128
+ children: [
1129
+ {
1130
+ children: [
1131
+ {
1132
+ children: [
1133
+ {
1134
+ children: [
1135
+ {
1136
+ children: [
1137
+ {
1138
+ children: [
1139
+ {
1140
+ children: [
1141
+ {
1142
+ children: [
1143
+ {
1144
+ children: [
1145
+ {
1146
+ children: [
1147
+ {
1148
+ children: [
1149
+ {
1150
+ children: [
1151
+ {
1152
+ children: [
1153
+ {
1154
+ children: [
1155
+ {
1156
+ children: [
1157
+ {
1158
+ children: [
1159
+ {
1160
+ children: [
1161
+ {
1162
+ children: [
1163
+ {
1164
+ children: [
1165
+ {
1166
+ children: [
1167
+ {
1168
+ children: [
1169
+ {
1170
+ children: [
1171
+ {
1172
+ children: [
1173
+ {
1174
+ children: [
1175
+ {
1176
+ children: [
1177
+ {
1178
+ children: [
1179
+ {
1180
+ children: [
1181
+ {
1182
+ children: [
1183
+ {
1184
+ children: [
1185
+ {
1186
+ children: [
1187
+ {
1188
+ children: [
1189
+ {
1190
+ children: [
1191
+ {
1192
+ name: '__poll',
1193
+ value: 120,
1194
+ },
1195
+ ],
1196
+ name: 'Java_java_net_SocketInputStream_socketRead0',
1197
+ value: 120,
1198
+ },
1199
+ ],
1200
+ name: 'java.net.SocketInputStream.socketRead0(Ljava/io/FileDescriptor;[BIII)I',
1201
+ value: 120,
1202
+ },
1203
+ ],
1204
+ name: 'java.net.SocketInputStream.socketRead(Ljava/io/FileDescriptor;[BIII)I',
1205
+ value: 120,
1206
+ },
1207
+ ],
1208
+ name: 'java.net.SocketInputStream.read([BIII)I',
1209
+ value: 120,
1210
+ },
1211
+ ],
1212
+ name: 'java.net.SocketInputStream.read([BII)I',
1213
+ value: 120,
1214
+ },
1215
+ ],
1216
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.streamRead([BII)I',
1217
+ value: 120,
1218
+ },
1219
+ ],
1220
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.fillBuffer()I',
1221
+ value: 120,
1222
+ },
1223
+ ],
1224
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.readLine(Lorg/apache/http/util/CharArrayBuffer;)I',
1225
+ value: 120,
1226
+ },
1227
+ ],
1228
+ name: 'org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(Lorg/apache/http/io/SessionInputBuffer;)Lorg/apache/http/HttpResponse;',
1229
+ value: 120,
1230
+ },
1231
+ ],
1232
+ name: 'org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(Lorg/apache/http/io/SessionInputBuffer;)Lorg/apache/http/HttpMessage;',
1233
+ value: 120,
1234
+ },
1235
+ ],
1236
+ name: 'org.apache.http.impl.io.AbstractMessageParser.parse()Lorg/apache/http/HttpMessage;',
1237
+ value: 120,
1238
+ },
1239
+ ],
1240
+ name: 'org.apache.http.impl.DefaultBHttpClientConnection.receiveResponseHeader()Lorg/apache/http/HttpResponse;',
1241
+ value: 120,
1242
+ },
1243
+ ],
1244
+ name: 'org.apache.http.impl.conn.CPoolProxy.receiveResponseHeader()Lorg/apache/http/HttpResponse;',
1245
+ value: 120,
1246
+ },
1247
+ ],
1248
+ name: 'org.apache.http.protocol.HttpRequestExecutor.doReceiveResponse(Lorg/apache/http/HttpRequest;Lorg/apache/http/HttpClientConnection;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/HttpResponse;',
1249
+ value: 120,
1250
+ },
1251
+ ],
1252
+ name: 'org.apache.http.protocol.HttpRequestExecutor.execute(Lorg/apache/http/HttpRequest;Lorg/apache/http/HttpClientConnection;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/HttpResponse;',
1253
+ value: 120,
1254
+ },
1255
+ ],
1256
+ name: 'org.apache.http.impl.execchain.MainClientExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
1257
+ value: 120,
1258
+ },
1259
+ ],
1260
+ name: 'org.apache.http.impl.execchain.ProtocolExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
1261
+ value: 120,
1262
+ },
1263
+ ],
1264
+ name: 'org.apache.http.impl.execchain.RetryExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
1265
+ value: 120,
1266
+ },
1267
+ ],
1268
+ name: 'org.apache.http.impl.execchain.RedirectExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
1269
+ value: 120,
1270
+ },
1271
+ ],
1272
+ name: 'org.apache.http.impl.client.InternalHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
1273
+ value: 120,
1274
+ },
1275
+ ],
1276
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
1277
+ value: 120,
1278
+ },
1279
+ ],
1280
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/client/ResponseHandler;Lorg/apache/http/protocol/HttpContext;)Ljava/lang/Object;',
1281
+ value: 120,
1282
+ },
1283
+ ],
1284
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/client/methods/HttpUriRequest;Lorg/apache/http/client/ResponseHandler;Lorg/apache/http/protocol/HttpContext;)Ljava/lang/Object;',
1285
+ value: 120,
1286
+ },
1287
+ ],
1288
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/client/methods/HttpUriRequest;Lorg/apache/http/client/ResponseHandler;)Ljava/lang/Object;',
1289
+ value: 120,
1290
+ },
1291
+ ],
1292
+ name: 'com.ecwid.consul.transport.AbstractHttpTransport.executeRequest(Lorg/apache/http/client/methods/HttpUriRequest;)Lcom/ecwid/consul/transport/RawResponse;',
1293
+ value: 120,
1294
+ },
1295
+ ],
1296
+ name: 'com.ecwid.consul.transport.AbstractHttpTransport.makeGetRequest(Ljava/lang/String;)Lcom/ecwid/consul/transport/RawResponse;',
1297
+ value: 120,
1298
+ },
1299
+ ],
1300
+ name: 'com.ecwid.consul.v1.ConsulRawClient.makeGetRequest(Ljava/lang/String;Ljava/util/List;)Lcom/ecwid/consul/transport/RawResponse;',
1301
+ value: 120,
1302
+ },
1303
+ ],
1304
+ name: 'com.ecwid.consul.v1.ConsulRawClient.makeGetRequest(Ljava/lang/String;[Lcom/ecwid/consul/UrlParameters;)Lcom/ecwid/consul/transport/RawResponse;',
1305
+ value: 120,
1306
+ },
1307
+ ],
1308
+ name: 'com.ecwid.consul.v1.kv.KeyValueConsulClient.getKVValue(Ljava/lang/String;Ljava/lang/String;Lcom/ecwid/consul/v1/QueryParams;)Lcom/ecwid/consul/v1/Response;',
1309
+ value: 120,
1310
+ },
1311
+ ],
1312
+ name: 'com.ecwid.consul.v1.ConsulClient.getKVValue(Ljava/lang/String;Ljava/lang/String;Lcom/ecwid/consul/v1/QueryParams;)Lcom/ecwid/consul/v1/Response;',
1313
+ value: 120,
1314
+ },
1315
+ ],
1316
+ name: 'com.tencent.tsf.unit.sync.TsfUnitInfoKVLoader.syncUnitInfoFromConsul()V',
1317
+ value: 120,
1318
+ },
1319
+ ],
1320
+ name: 'sun.reflect.GeneratedMethodAccessor149.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;',
1321
+ value: 120,
1322
+ },
1323
+ ],
1324
+ name: 'sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;',
1325
+ value: 120,
1326
+ },
1327
+ ],
1328
+ name: 'java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;',
1329
+ value: 120,
1330
+ },
1331
+ ],
1332
+ name: 'org.springframework.scheduling.support.ScheduledMethodRunnable.run()V',
1333
+ value: 120,
1334
+ },
1335
+ ],
1336
+ name: 'org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run()V',
1337
+ value: 120,
1338
+ },
1339
+ ],
1340
+ name: 'java.util.concurrent.Executors$RunnableAdapter.call()Ljava/lang/Object;',
1341
+ value: 120,
1342
+ },
1343
+ ],
1344
+ name: 'java.util.concurrent.FutureTask.runAndReset()Z',
1345
+ value: 120,
1346
+ },
1347
+ ],
1348
+ name: 'java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(Ljava/util/concurrent/ScheduledThreadPoolExecutor$ScheduledFutureTask;)Z',
1349
+ value: 120,
1350
+ },
1351
+ ],
1352
+ name: 'java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run()V',
1353
+ value: 120,
1354
+ },
1355
+ ],
1356
+ name: 'java.util.concurrent.ThreadPoolExecutor.runWorker(Ljava/util/concurrent/ThreadPoolExecutor$Worker;)V',
1357
+ value: 125,
1358
+ },
1359
+ ],
1360
+ name: 'java.util.concurrent.ThreadPoolExecutor$Worker.run()V',
1361
+ value: 125,
1362
+ },
1363
+ {
1364
+ children: [
1365
+ {
1366
+ children: [
1367
+ {
1368
+ children: [
1369
+ {
1370
+ children: [
1371
+ {
1372
+ children: [
1373
+ {
1374
+ name: '__pthread_cond_timedwait',
1375
+ value: 240,
1376
+ },
1377
+ ],
1378
+ name: 'os::sleep(Thread*, long, bool)',
1379
+ value: 240,
1380
+ },
1381
+ ],
1382
+ name: 'JVM_Sleep',
1383
+ value: 240,
1384
+ },
1385
+ ],
1386
+ name: 'java.lang.Thread.sleep(J)V',
1387
+ value: 240,
1388
+ },
1389
+ ],
1390
+ name: 'org.apache.dubbo.common.timer.HashedWheelTimer$Worker.waitForNextTick()J',
1391
+ value: 240,
1392
+ },
1393
+ ],
1394
+ name: 'org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run()V',
1395
+ value: 240,
1396
+ },
1397
+ {
1398
+ children: [
1399
+ {
1400
+ children: [
1401
+ {
1402
+ children: [
1403
+ {
1404
+ children: [
1405
+ {
1406
+ children: [
1407
+ {
1408
+ children: [
1409
+ {
1410
+ children: [
1411
+ {
1412
+ children: [
1413
+ {
1414
+ children: [
1415
+ {
1416
+ children: [
1417
+ {
1418
+ children: [
1419
+ {
1420
+ children: [
1421
+ {
1422
+ children: [
1423
+ {
1424
+ children: [
1425
+ {
1426
+ children: [
1427
+ {
1428
+ children: [
1429
+ {
1430
+ children: [
1431
+ {
1432
+ children: [
1433
+ {
1434
+ children: [
1435
+ {
1436
+ children: [
1437
+ {
1438
+ children: [
1439
+ {
1440
+ children: [
1441
+ {
1442
+ children: [
1443
+ {
1444
+ children: [
1445
+ {
1446
+ children: [
1447
+ {
1448
+ children: [
1449
+ {
1450
+ children: [
1451
+ {
1452
+ children: [
1453
+ {
1454
+ children: [
1455
+ {
1456
+ children: [
1457
+ {
1458
+ children: [
1459
+ {
1460
+ children: [
1461
+ {
1462
+ children: [
1463
+ {
1464
+ children: [
1465
+ {
1466
+ children: [
1467
+ {
1468
+ children: [
1469
+ {
1470
+ name: '__poll',
1471
+ value: 240,
1472
+ },
1473
+ ],
1474
+ name: 'Java_java_net_SocketInputStream_socketRead0',
1475
+ value: 240,
1476
+ },
1477
+ ],
1478
+ name: 'java.net.SocketInputStream.socketRead0(Ljava/io/FileDescriptor;[BIII)I',
1479
+ value: 240,
1480
+ },
1481
+ ],
1482
+ name: 'java.net.SocketInputStream.socketRead(Ljava/io/FileDescriptor;[BIII)I',
1483
+ value: 240,
1484
+ },
1485
+ ],
1486
+ name: 'java.net.SocketInputStream.read([BIII)I',
1487
+ value: 240,
1488
+ },
1489
+ ],
1490
+ name: 'java.net.SocketInputStream.read([BII)I',
1491
+ value: 240,
1492
+ },
1493
+ ],
1494
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.streamRead([BII)I',
1495
+ value: 240,
1496
+ },
1497
+ ],
1498
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.fillBuffer()I',
1499
+ value: 240,
1500
+ },
1501
+ ],
1502
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.readLine(Lorg/apache/http/util/CharArrayBuffer;)I',
1503
+ value: 240,
1504
+ },
1505
+ ],
1506
+ name: 'org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(Lorg/apache/http/io/SessionInputBuffer;)Lorg/apache/http/HttpResponse;',
1507
+ value: 240,
1508
+ },
1509
+ ],
1510
+ name: 'org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(Lorg/apache/http/io/SessionInputBuffer;)Lorg/apache/http/HttpMessage;',
1511
+ value: 240,
1512
+ },
1513
+ ],
1514
+ name: 'org.apache.http.impl.io.AbstractMessageParser.parse()Lorg/apache/http/HttpMessage;',
1515
+ value: 240,
1516
+ },
1517
+ ],
1518
+ name: 'org.apache.http.impl.DefaultBHttpClientConnection.receiveResponseHeader()Lorg/apache/http/HttpResponse;',
1519
+ value: 240,
1520
+ },
1521
+ ],
1522
+ name: 'org.apache.http.impl.conn.CPoolProxy.receiveResponseHeader()Lorg/apache/http/HttpResponse;',
1523
+ value: 240,
1524
+ },
1525
+ ],
1526
+ name: 'org.apache.http.protocol.HttpRequestExecutor.doReceiveResponse(Lorg/apache/http/HttpRequest;Lorg/apache/http/HttpClientConnection;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/HttpResponse;',
1527
+ value: 240,
1528
+ },
1529
+ ],
1530
+ name: 'org.apache.http.protocol.HttpRequestExecutor.execute(Lorg/apache/http/HttpRequest;Lorg/apache/http/HttpClientConnection;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/HttpResponse;',
1531
+ value: 240,
1532
+ },
1533
+ ],
1534
+ name: 'org.apache.http.impl.execchain.MainClientExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
1535
+ value: 240,
1536
+ },
1537
+ ],
1538
+ name: 'org.apache.http.impl.execchain.ProtocolExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
1539
+ value: 240,
1540
+ },
1541
+ ],
1542
+ name: 'org.apache.http.impl.execchain.RetryExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
1543
+ value: 240,
1544
+ },
1545
+ ],
1546
+ name: 'org.apache.http.impl.execchain.RedirectExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
1547
+ value: 240,
1548
+ },
1549
+ ],
1550
+ name: 'org.apache.http.impl.client.InternalHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
1551
+ value: 240,
1552
+ },
1553
+ ],
1554
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
1555
+ value: 240,
1556
+ },
1557
+ ],
1558
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/client/ResponseHandler;Lorg/apache/http/protocol/HttpContext;)Ljava/lang/Object;',
1559
+ value: 240,
1560
+ },
1561
+ ],
1562
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/client/methods/HttpUriRequest;Lorg/apache/http/client/ResponseHandler;Lorg/apache/http/protocol/HttpContext;)Ljava/lang/Object;',
1563
+ value: 240,
1564
+ },
1565
+ ],
1566
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/client/methods/HttpUriRequest;Lorg/apache/http/client/ResponseHandler;)Ljava/lang/Object;',
1567
+ value: 240,
1568
+ },
1569
+ ],
1570
+ name: 'com.ecwid.consul.transport.AbstractHttpTransport.executeRequest(Lorg/apache/http/client/methods/HttpUriRequest;)Lcom/ecwid/consul/transport/RawResponse;',
1571
+ value: 240,
1572
+ },
1573
+ ],
1574
+ name: 'com.ecwid.consul.transport.AbstractHttpTransport.makeGetRequest(Ljava/lang/String;)Lcom/ecwid/consul/transport/RawResponse;',
1575
+ value: 240,
1576
+ },
1577
+ ],
1578
+ name: 'com.ecwid.consul.v1.ConsulRawClient.makeGetRequest(Ljava/lang/String;Ljava/util/List;)Lcom/ecwid/consul/transport/RawResponse;',
1579
+ value: 240,
1580
+ },
1581
+ ],
1582
+ name: 'com.ecwid.consul.v1.ConsulRawClient.makeGetRequest(Ljava/lang/String;[Lcom/ecwid/consul/UrlParameters;)Lcom/ecwid/consul/transport/RawResponse;',
1583
+ value: 240,
1584
+ },
1585
+ ],
1586
+ name: 'com.ecwid.consul.v1.kv.KeyValueConsulClient.getKVValue(Ljava/lang/String;Ljava/lang/String;Lcom/ecwid/consul/v1/QueryParams;)Lcom/ecwid/consul/v1/Response;',
1587
+ value: 240,
1588
+ },
1589
+ ],
1590
+ name: 'com.ecwid.consul.v1.ConsulClient.getKVValue(Ljava/lang/String;Ljava/lang/String;Lcom/ecwid/consul/v1/QueryParams;)Lcom/ecwid/consul/v1/Response;',
1591
+ value: 240,
1592
+ },
1593
+ ],
1594
+ name: 'com.tencent.tsf.femas.config.impl.consul.ConsulConfig$ValueChangeNotifier.processValue()V',
1595
+ value: 240,
1596
+ },
1597
+ ],
1598
+ name: 'com.tencent.tsf.femas.config.impl.consul.ConsulConfig$ValueChangeNotifier.run()V',
1599
+ value: 240,
1600
+ },
1601
+ ],
1602
+ name: 'java.util.concurrent.Executors$RunnableAdapter.call()Ljava/lang/Object;',
1603
+ value: 240,
1604
+ },
1605
+ ],
1606
+ name: 'java.util.concurrent.FutureTask.run()V',
1607
+ value: 240,
1608
+ },
1609
+ ],
1610
+ name: 'java.util.concurrent.ThreadPoolExecutor.runWorker(Ljava/util/concurrent/ThreadPoolExecutor$Worker;)V',
1611
+ value: 240,
1612
+ },
1613
+ ],
1614
+ name: 'java.util.concurrent.ThreadPoolExecutor$Worker.run()V',
1615
+ value: 240,
1616
+ },
1617
+ ],
1618
+ name: 'java.lang.Thread.run()V',
1619
+ value: 605,
1620
+ },
1621
+ {
1622
+ children: [
1623
+ {
1624
+ children: [
1625
+ {
1626
+ children: [
1627
+ {
1628
+ children: [
1629
+ {
1630
+ children: [
1631
+ {
1632
+ children: [
1633
+ {
1634
+ name: 'pthread_cond_wait@@GLIBC_2.3.2',
1635
+ value: 121,
1636
+ },
1637
+ ],
1638
+ name: 'Monitor::IWait(Thread*, long)',
1639
+ value: 121,
1640
+ },
1641
+ ],
1642
+ name: 'Monitor::wait(bool, long, bool)',
1643
+ value: 121,
1644
+ },
1645
+ ],
1646
+ name: 'Threads::destroy_vm()',
1647
+ value: 121,
1648
+ },
1649
+ ],
1650
+ name: 'jni_DestroyJavaVM',
1651
+ value: 121,
1652
+ },
1653
+ ],
1654
+ name: 'JavaMain',
1655
+ value: 121,
1656
+ },
1657
+ ],
1658
+ name: 'start_thread',
1659
+ value: 121,
1660
+ },
1661
+ {
1662
+ children: [
1663
+ {
1664
+ children: [
1665
+ {
1666
+ children: [
1667
+ {
1668
+ children: [
1669
+ {
1670
+ children: [
1671
+ {
1672
+ children: [
1673
+ {
1674
+ children: [
1675
+ {
1676
+ children: [
1677
+ {
1678
+ children: [
1679
+ {
1680
+ children: [
1681
+ {
1682
+ children: [
1683
+ {
1684
+ children: [
1685
+ {
1686
+ children: [
1687
+ {
1688
+ children: [
1689
+ {
1690
+ children: [
1691
+ {
1692
+ children: [
1693
+ {
1694
+ children: [
1695
+ {
1696
+ children: [
1697
+ {
1698
+ children: [
1699
+ {
1700
+ children: [
1701
+ {
1702
+ children: [
1703
+ {
1704
+ children: [
1705
+ {
1706
+ children: [
1707
+ {
1708
+ children: [
1709
+ {
1710
+ children: [
1711
+ {
1712
+ children: [
1713
+ {
1714
+ children: [
1715
+ {
1716
+ children: [
1717
+ {
1718
+ children: [
1719
+ {
1720
+ children: [
1721
+ {
1722
+ children: [
1723
+ {
1724
+ children: [
1725
+ {
1726
+ children: [
1727
+ {
1728
+ children: [
1729
+ {
1730
+ children: [
1731
+ {
1732
+ children: [
1733
+ {
1734
+ children: [
1735
+ {
1736
+ name: '__poll',
1737
+ value: 240,
1738
+ },
1739
+ ],
1740
+ name: 'Java_java_net_SocketInputStream_socketRead0',
1741
+ value: 240,
1742
+ },
1743
+ ],
1744
+ name: 'java.net.SocketInputStream.socketRead0(Ljava/io/FileDescriptor;[BIII)I',
1745
+ value: 240,
1746
+ },
1747
+ ],
1748
+ name: 'java.net.SocketInputStream.socketRead(Ljava/io/FileDescriptor;[BIII)I',
1749
+ value: 240,
1750
+ },
1751
+ ],
1752
+ name: 'java.net.SocketInputStream.read([BIII)I',
1753
+ value: 240,
1754
+ },
1755
+ ],
1756
+ name: 'java.net.SocketInputStream.read([BII)I',
1757
+ value: 240,
1758
+ },
1759
+ ],
1760
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.streamRead([BII)I',
1761
+ value: 240,
1762
+ },
1763
+ ],
1764
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.fillBuffer()I',
1765
+ value: 240,
1766
+ },
1767
+ ],
1768
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.readLine(Lorg/apache/http/util/CharArrayBuffer;)I',
1769
+ value: 240,
1770
+ },
1771
+ ],
1772
+ name: 'org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(Lorg/apache/http/io/SessionInputBuffer;)Lorg/apache/http/HttpResponse;',
1773
+ value: 240,
1774
+ },
1775
+ ],
1776
+ name: 'org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(Lorg/apache/http/io/SessionInputBuffer;)Lorg/apache/http/HttpMessage;',
1777
+ value: 240,
1778
+ },
1779
+ ],
1780
+ name: 'org.apache.http.impl.io.AbstractMessageParser.parse()Lorg/apache/http/HttpMessage;',
1781
+ value: 240,
1782
+ },
1783
+ ],
1784
+ name: 'org.apache.http.impl.DefaultBHttpClientConnection.receiveResponseHeader()Lorg/apache/http/HttpResponse;',
1785
+ value: 240,
1786
+ },
1787
+ ],
1788
+ name: 'org.apache.http.impl.conn.CPoolProxy.receiveResponseHeader()Lorg/apache/http/HttpResponse;',
1789
+ value: 240,
1790
+ },
1791
+ ],
1792
+ name: 'org.apache.http.protocol.HttpRequestExecutor.doReceiveResponse(Lorg/apache/http/HttpRequest;Lorg/apache/http/HttpClientConnection;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/HttpResponse;',
1793
+ value: 240,
1794
+ },
1795
+ ],
1796
+ name: 'org.apache.http.protocol.HttpRequestExecutor.execute(Lorg/apache/http/HttpRequest;Lorg/apache/http/HttpClientConnection;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/HttpResponse;',
1797
+ value: 240,
1798
+ },
1799
+ ],
1800
+ name: 'org.apache.http.impl.execchain.MainClientExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
1801
+ value: 240,
1802
+ },
1803
+ ],
1804
+ name: 'org.apache.http.impl.execchain.ProtocolExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
1805
+ value: 240,
1806
+ },
1807
+ ],
1808
+ name: 'org.apache.http.impl.execchain.RetryExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
1809
+ value: 240,
1810
+ },
1811
+ ],
1812
+ name: 'org.apache.http.impl.execchain.RedirectExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
1813
+ value: 240,
1814
+ },
1815
+ ],
1816
+ name: 'org.apache.http.impl.client.InternalHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
1817
+ value: 240,
1818
+ },
1819
+ ],
1820
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
1821
+ value: 240,
1822
+ },
1823
+ ],
1824
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/client/ResponseHandler;Lorg/apache/http/protocol/HttpContext;)Ljava/lang/Object;',
1825
+ value: 240,
1826
+ },
1827
+ ],
1828
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/client/methods/HttpUriRequest;Lorg/apache/http/client/ResponseHandler;Lorg/apache/http/protocol/HttpContext;)Ljava/lang/Object;',
1829
+ value: 240,
1830
+ },
1831
+ ],
1832
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/client/methods/HttpUriRequest;Lorg/apache/http/client/ResponseHandler;)Ljava/lang/Object;',
1833
+ value: 240,
1834
+ },
1835
+ ],
1836
+ name: 'com.ecwid.consul.transport.AbstractHttpTransport.executeRequest(Lorg/apache/http/client/methods/HttpUriRequest;)Lcom/ecwid/consul/transport/RawResponse;',
1837
+ value: 240,
1838
+ },
1839
+ ],
1840
+ name: 'com.ecwid.consul.transport.AbstractHttpTransport.makeGetRequest(Ljava/lang/String;)Lcom/ecwid/consul/transport/RawResponse;',
1841
+ value: 240,
1842
+ },
1843
+ ],
1844
+ name: 'com.ecwid.consul.v1.ConsulRawClient.makeGetRequest(Ljava/lang/String;Ljava/util/List;)Lcom/ecwid/consul/transport/RawResponse;',
1845
+ value: 240,
1846
+ },
1847
+ ],
1848
+ name: 'com.ecwid.consul.v1.ConsulRawClient.makeGetRequest(Ljava/lang/String;[Lcom/ecwid/consul/UrlParameters;)Lcom/ecwid/consul/transport/RawResponse;',
1849
+ value: 240,
1850
+ },
1851
+ ],
1852
+ name: 'com.tencent.tsf.atom.registry.impl.consul.discovery.ConsulServiceDiscoveryClient.getHealthServices(Lcom/tencent/tsf/atom/common/entity/Service;JI)Lcom/ecwid/consul/v1/Response;',
1853
+ value: 240,
1854
+ },
1855
+ ],
1856
+ name: 'com.tencent.tsf.atom.registry.impl.consul.discovery.ConsulServiceDiscoveryClient.access$200(Lcom/tencent/tsf/atom/registry/impl/consul/discovery/ConsulServiceDiscoveryClient;Lcom/tencent/tsf/atom/common/entity/Service;JI)Lcom/ecwid/consul/v1/Response;',
1857
+ value: 240,
1858
+ },
1859
+ ],
1860
+ name: 'com.tencent.tsf.atom.registry.impl.consul.discovery.ConsulServiceDiscoveryClient$ConsulNotifier.processService()V',
1861
+ value: 240,
1862
+ },
1863
+ ],
1864
+ name: 'com.tencent.tsf.atom.registry.impl.consul.discovery.ConsulServiceDiscoveryClient$ConsulNotifier.run()V',
1865
+ value: 240,
1866
+ },
1867
+ ],
1868
+ name: 'java.util.concurrent.Executors$RunnableAdapter.call()Ljava/lang/Object;',
1869
+ value: 240,
1870
+ },
1871
+ ],
1872
+ name: 'java.util.concurrent.FutureTask.run()V',
1873
+ value: 240,
1874
+ },
1875
+ ],
1876
+ name: 'java.util.concurrent.ThreadPoolExecutor.runWorker(Ljava/util/concurrent/ThreadPoolExecutor$Worker;)V',
1877
+ value: 240,
1878
+ },
1879
+ ],
1880
+ name: 'java.util.concurrent.ThreadPoolExecutor$Worker.run()V',
1881
+ value: 240,
1882
+ },
1883
+ ],
1884
+ name: 'java.lang.Thread.run()V',
1885
+ value: 240,
1886
+ },
1887
+ {
1888
+ children: [
1889
+ {
1890
+ children: [
1891
+ {
1892
+ children: [
1893
+ {
1894
+ children: [
1895
+ {
1896
+ children: [
1897
+ {
1898
+ children: [
1899
+ {
1900
+ children: [
1901
+ {
1902
+ name: '__pthread_cond_timedwait',
1903
+ value: 240,
1904
+ },
1905
+ ],
1906
+ name: 'Monitor::IWait(Thread*, long)',
1907
+ value: 240,
1908
+ },
1909
+ ],
1910
+ name: 'Monitor::wait(bool, long, bool)',
1911
+ value: 240,
1912
+ },
1913
+ ],
1914
+ name: 'CompileQueue::get()',
1915
+ value: 240,
1916
+ },
1917
+ ],
1918
+ name: 'CompileBroker::compiler_thread_loop()',
1919
+ value: 240,
1920
+ },
1921
+ ],
1922
+ name: 'JavaThread::thread_main_inner()',
1923
+ value: 240,
1924
+ },
1925
+ {
1926
+ children: [
1927
+ {
1928
+ children: [
1929
+ {
1930
+ children: [
1931
+ {
1932
+ children: [
1933
+ {
1934
+ name: '__pthread_cond_timedwait',
1935
+ value: 120,
1936
+ },
1937
+ ],
1938
+ name: 'Monitor::IWait(Thread*, long)',
1939
+ value: 120,
1940
+ },
1941
+ ],
1942
+ name: 'Monitor::wait(bool, long, bool)',
1943
+ value: 120,
1944
+ },
1945
+ ],
1946
+ name: 'WatcherThread::sleep() const',
1947
+ value: 120,
1948
+ },
1949
+ ],
1950
+ name: 'WatcherThread::run()',
1951
+ value: 120,
1952
+ },
1953
+ ],
1954
+ name: 'java_start(Thread*)',
1955
+ value: 360,
1956
+ },
1957
+ ],
1958
+ name: 'start_thread',
1959
+ value: 360,
1960
+ },
1961
+ {
1962
+ children: [
1963
+ {
1964
+ children: [
1965
+ {
1966
+ children: [
1967
+ {
1968
+ children: [
1969
+ {
1970
+ children: [
1971
+ {
1972
+ children: [
1973
+ {
1974
+ children: [
1975
+ {
1976
+ children: [
1977
+ {
1978
+ children: [
1979
+ {
1980
+ children: [
1981
+ {
1982
+ children: [
1983
+ {
1984
+ children: [
1985
+ {
1986
+ name: 'epoll_wait',
1987
+ value: 120,
1988
+ },
1989
+ ],
1990
+ name: 'sun.nio.ch.EPollArrayWrapper.epollWait(JIJI)I',
1991
+ value: 120,
1992
+ },
1993
+ ],
1994
+ name: 'sun.nio.ch.EPollArrayWrapper.poll(J)I',
1995
+ value: 120,
1996
+ },
1997
+ ],
1998
+ name: 'sun.nio.ch.EPollSelectorImpl.doSelect(J)I',
1999
+ value: 120,
2000
+ },
2001
+ ],
2002
+ name: 'sun.nio.ch.SelectorImpl.lockAndDoSelect(J)I',
2003
+ value: 120,
2004
+ },
2005
+ ],
2006
+ name: 'sun.nio.ch.SelectorImpl.select(J)I',
2007
+ value: 120,
2008
+ },
2009
+ ],
2010
+ name: 'io.netty.channel.nio.SelectedSelectionKeySetSelector.select(J)I',
2011
+ value: 120,
2012
+ },
2013
+ ],
2014
+ name: 'io.netty.channel.nio.NioEventLoop.select(J)I',
2015
+ value: 120,
2016
+ },
2017
+ ],
2018
+ name: 'io.netty.channel.nio.NioEventLoop.run()V',
2019
+ value: 120,
2020
+ },
2021
+ ],
2022
+ name: 'io.netty.util.concurrent.SingleThreadEventExecutor$4.run()V',
2023
+ value: 120,
2024
+ },
2025
+ ],
2026
+ name: 'io.netty.util.internal.ThreadExecutorMap$2.run()V',
2027
+ value: 120,
2028
+ },
2029
+ ],
2030
+ name: 'io.netty.util.concurrent.FastThreadLocalRunnable.run()V',
2031
+ value: 120,
2032
+ },
2033
+ {
2034
+ children: [
2035
+ {
2036
+ children: [
2037
+ {
2038
+ children: [
2039
+ {
2040
+ children: [
2041
+ {
2042
+ children: [
2043
+ {
2044
+ children: [
2045
+ {
2046
+ children: [
2047
+ {
2048
+ children: [
2049
+ {
2050
+ children: [
2051
+ {
2052
+ name: 'pthread_cond_wait@@GLIBC_2.3.2',
2053
+ value: 120,
2054
+ },
2055
+ ],
2056
+ name: 'Unsafe_Park',
2057
+ value: 120,
2058
+ },
2059
+ ],
2060
+ name: 'sun.misc.Unsafe.park(ZJ)V',
2061
+ value: 120,
2062
+ },
2063
+ ],
2064
+ name: 'java.util.concurrent.locks.LockSupport.park(Ljava/lang/Object;)V',
2065
+ value: 120,
2066
+ },
2067
+ ],
2068
+ name: 'java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await()V',
2069
+ value: 120,
2070
+ },
2071
+ ],
2072
+ name: 'java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take()Ljava/util/concurrent/RunnableScheduledFuture;',
2073
+ value: 120,
2074
+ },
2075
+ ],
2076
+ name: 'java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take()Ljava/lang/Object;',
2077
+ value: 120,
2078
+ },
2079
+ ],
2080
+ name: 'java.util.concurrent.ThreadPoolExecutor.getTask()Ljava/lang/Runnable;',
2081
+ value: 120,
2082
+ },
2083
+ ],
2084
+ name: 'java.util.concurrent.ThreadPoolExecutor.runWorker(Ljava/util/concurrent/ThreadPoolExecutor$Worker;)V',
2085
+ value: 120,
2086
+ },
2087
+ ],
2088
+ name: '[unknown]',
2089
+ value: 120,
2090
+ },
2091
+ {
2092
+ children: [
2093
+ {
2094
+ children: [
2095
+ {
2096
+ children: [
2097
+ {
2098
+ children: [
2099
+ {
2100
+ children: [
2101
+ {
2102
+ children: [
2103
+ {
2104
+ name: '__pthread_cond_timedwait',
2105
+ value: 120,
2106
+ },
2107
+ ],
2108
+ name: 'os::sleep(Thread*, long, bool)',
2109
+ value: 120,
2110
+ },
2111
+ ],
2112
+ name: 'JVM_Sleep',
2113
+ value: 120,
2114
+ },
2115
+ ],
2116
+ name: 'java.lang.Thread.sleep(J)V',
2117
+ value: 120,
2118
+ },
2119
+ ],
2120
+ name: 'java.lang.Thread.sleep(JI)V',
2121
+ value: 120,
2122
+ },
2123
+ ],
2124
+ name: 'java.util.concurrent.TimeUnit.sleep(J)V',
2125
+ value: 120,
2126
+ },
2127
+ ],
2128
+ name: 'com.tencent.tsf.atom.common.util.TimeUtil$1.run()V',
2129
+ value: 120,
2130
+ },
2131
+ {
2132
+ children: [
2133
+ {
2134
+ children: [
2135
+ {
2136
+ children: [
2137
+ {
2138
+ children: [
2139
+ {
2140
+ children: [
2141
+ {
2142
+ children: [
2143
+ {
2144
+ children: [
2145
+ {
2146
+ children: [
2147
+ {
2148
+ children: [
2149
+ {
2150
+ children: [
2151
+ {
2152
+ name: 'pthread_cond_wait@@GLIBC_2.3.2',
2153
+ value: 120,
2154
+ },
2155
+ ],
2156
+ name: 'Unsafe_Park',
2157
+ value: 120,
2158
+ },
2159
+ ],
2160
+ name: 'sun.misc.Unsafe.park(ZJ)V',
2161
+ value: 120,
2162
+ },
2163
+ ],
2164
+ name: 'java.util.concurrent.locks.LockSupport.park(Ljava/lang/Object;)V',
2165
+ value: 120,
2166
+ },
2167
+ ],
2168
+ name: 'java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await()V',
2169
+ value: 120,
2170
+ },
2171
+ ],
2172
+ name: 'java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take()Ljava/util/concurrent/RunnableScheduledFuture;',
2173
+ value: 120,
2174
+ },
2175
+ ],
2176
+ name: 'java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take()Ljava/lang/Object;',
2177
+ value: 120,
2178
+ },
2179
+ ],
2180
+ name: 'java.util.concurrent.ThreadPoolExecutor.getTask()Ljava/lang/Runnable;',
2181
+ value: 120,
2182
+ },
2183
+ ],
2184
+ name: 'java.util.concurrent.ThreadPoolExecutor.runWorker(Ljava/util/concurrent/ThreadPoolExecutor$Worker;)V',
2185
+ value: 120,
2186
+ },
2187
+ ],
2188
+ name: 'java.util.concurrent.ThreadPoolExecutor$Worker.run()V',
2189
+ value: 120,
2190
+ },
2191
+ ],
2192
+ name: 'org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run()V',
2193
+ value: 120,
2194
+ },
2195
+ {
2196
+ children: [
2197
+ {
2198
+ children: [
2199
+ {
2200
+ children: [
2201
+ {
2202
+ children: [
2203
+ {
2204
+ children: [
2205
+ {
2206
+ children: [
2207
+ {
2208
+ children: [
2209
+ {
2210
+ children: [
2211
+ {
2212
+ children: [
2213
+ {
2214
+ name: 'pthread_cond_wait@@GLIBC_2.3.2',
2215
+ value: 1560,
2216
+ },
2217
+ ],
2218
+ name: 'Unsafe_Park',
2219
+ value: 1560,
2220
+ },
2221
+ ],
2222
+ name: 'sun.misc.Unsafe.park(ZJ)V',
2223
+ value: 1560,
2224
+ },
2225
+ ],
2226
+ name: 'java.util.concurrent.locks.LockSupport.park(Ljava/lang/Object;)V',
2227
+ value: 1560,
2228
+ },
2229
+ ],
2230
+ name: 'java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await()V',
2231
+ value: 1560,
2232
+ },
2233
+ ],
2234
+ name: 'java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take()Ljava/util/concurrent/RunnableScheduledFuture;',
2235
+ value: 1560,
2236
+ },
2237
+ ],
2238
+ name: 'java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take()Ljava/lang/Object;',
2239
+ value: 1560,
2240
+ },
2241
+ ],
2242
+ name: 'java.util.concurrent.ThreadPoolExecutor.getTask()Ljava/lang/Runnable;',
2243
+ value: 1560,
2244
+ },
2245
+ {
2246
+ children: [
2247
+ {
2248
+ children: [
2249
+ {
2250
+ children: [
2251
+ {
2252
+ children: [
2253
+ {
2254
+ children: [
2255
+ {
2256
+ children: [
2257
+ {
2258
+ children: [
2259
+ {
2260
+ name: '__pthread_cond_timedwait',
2261
+ value: 30,
2262
+ },
2263
+ ],
2264
+ name: 'os::sleep(Thread*, long, bool)',
2265
+ value: 30,
2266
+ },
2267
+ ],
2268
+ name: 'JVM_Sleep',
2269
+ value: 30,
2270
+ },
2271
+ ],
2272
+ name: 'java.lang.Thread.sleep(J)V',
2273
+ value: 30,
2274
+ },
2275
+ ],
2276
+ name: 'com.tencent.tsf.femas.common.util.TimeUtil.silentlySleep(J)V',
2277
+ value: 30,
2278
+ },
2279
+ ],
2280
+ name: 'com.tencent.tsf.femas.config.impl.consul.ConsulConfig$DirChangeNotifier.run()V',
2281
+ value: 30,
2282
+ },
2283
+ ],
2284
+ name: 'java.util.concurrent.Executors$RunnableAdapter.call()Ljava/lang/Object;',
2285
+ value: 30,
2286
+ },
2287
+ ],
2288
+ name: 'java.util.concurrent.FutureTask.run()V',
2289
+ value: 30,
2290
+ },
2291
+ ],
2292
+ name: 'java.util.concurrent.ThreadPoolExecutor.runWorker(Ljava/util/concurrent/ThreadPoolExecutor$Worker;)V',
2293
+ value: 1590,
2294
+ },
2295
+ ],
2296
+ name: 'java.util.concurrent.ThreadPoolExecutor$Worker.run()V',
2297
+ value: 1590,
2298
+ },
2299
+ ],
2300
+ name: 'java.lang.Thread.run()V',
2301
+ value: 2070,
2302
+ },
2303
+ {
2304
+ children: [
2305
+ {
2306
+ children: [
2307
+ {
2308
+ children: [
2309
+ {
2310
+ children: [
2311
+ {
2312
+ children: [
2313
+ {
2314
+ children: [
2315
+ {
2316
+ name: 'pthread_cond_wait@@GLIBC_2.3.2',
2317
+ value: 121,
2318
+ },
2319
+ ],
2320
+ name: 'ObjectMonitor::wait(long, bool, Thread*)',
2321
+ value: 121,
2322
+ },
2323
+ ],
2324
+ name: 'JVM_MonitorWait',
2325
+ value: 121,
2326
+ },
2327
+ ],
2328
+ name: 'java.lang.Object.wait(J)V',
2329
+ value: 121,
2330
+ },
2331
+ ],
2332
+ name: 'java.lang.ref.ReferenceQueue.remove(J)Ljava/lang/ref/Reference;',
2333
+ value: 121,
2334
+ },
2335
+ ],
2336
+ name: 'java.lang.ref.ReferenceQueue.remove()Ljava/lang/ref/Reference;',
2337
+ value: 121,
2338
+ },
2339
+ ],
2340
+ name: 'java.lang.ref.Finalizer$FinalizerThread.run()V',
2341
+ value: 121,
2342
+ },
2343
+ {
2344
+ children: [
2345
+ {
2346
+ children: [
2347
+ {
2348
+ children: [
2349
+ {
2350
+ children: [
2351
+ {
2352
+ children: [
2353
+ {
2354
+ children: [
2355
+ {
2356
+ children: [
2357
+ {
2358
+ children: [
2359
+ {
2360
+ children: [
2361
+ {
2362
+ children: [
2363
+ {
2364
+ children: [
2365
+ {
2366
+ children: [
2367
+ {
2368
+ children: [
2369
+ {
2370
+ children: [
2371
+ {
2372
+ children: [
2373
+ {
2374
+ children: [
2375
+ {
2376
+ children: [
2377
+ {
2378
+ children: [
2379
+ {
2380
+ children: [
2381
+ {
2382
+ children: [
2383
+ {
2384
+ children: [
2385
+ {
2386
+ children: [
2387
+ {
2388
+ children: [
2389
+ {
2390
+ children: [
2391
+ {
2392
+ children: [
2393
+ {
2394
+ children: [
2395
+ {
2396
+ children: [
2397
+ {
2398
+ children: [
2399
+ {
2400
+ children: [
2401
+ {
2402
+ children: [
2403
+ {
2404
+ children: [
2405
+ {
2406
+ name: '__poll',
2407
+ value: 1,
2408
+ },
2409
+ ],
2410
+ name: 'Java_java_net_SocketInputStream_socketRead0',
2411
+ value: 1,
2412
+ },
2413
+ ],
2414
+ name: 'java.net.SocketInputStream.socketRead0(Ljava/io/FileDescriptor;[BIII)I',
2415
+ value: 1,
2416
+ },
2417
+ ],
2418
+ name: 'java.net.SocketInputStream.socketRead(Ljava/io/FileDescriptor;[BIII)I',
2419
+ value: 1,
2420
+ },
2421
+ ],
2422
+ name: 'java.net.SocketInputStream.read([BIII)I',
2423
+ value: 1,
2424
+ },
2425
+ ],
2426
+ name: 'java.net.SocketInputStream.read([BII)I',
2427
+ value: 1,
2428
+ },
2429
+ ],
2430
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.streamRead([BII)I',
2431
+ value: 1,
2432
+ },
2433
+ ],
2434
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.fillBuffer()I',
2435
+ value: 1,
2436
+ },
2437
+ ],
2438
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.readLine(Lorg/apache/http/util/CharArrayBuffer;)I',
2439
+ value: 1,
2440
+ },
2441
+ ],
2442
+ name: 'org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(Lorg/apache/http/io/SessionInputBuffer;)Lorg/apache/http/HttpResponse;',
2443
+ value: 1,
2444
+ },
2445
+ ],
2446
+ name: 'org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(Lorg/apache/http/io/SessionInputBuffer;)Lorg/apache/http/HttpMessage;',
2447
+ value: 1,
2448
+ },
2449
+ ],
2450
+ name: 'org.apache.http.impl.io.AbstractMessageParser.parse()Lorg/apache/http/HttpMessage;',
2451
+ value: 1,
2452
+ },
2453
+ ],
2454
+ name: 'org.apache.http.impl.DefaultBHttpClientConnection.receiveResponseHeader()Lorg/apache/http/HttpResponse;',
2455
+ value: 1,
2456
+ },
2457
+ ],
2458
+ name: 'org.apache.http.impl.conn.CPoolProxy.receiveResponseHeader()Lorg/apache/http/HttpResponse;',
2459
+ value: 1,
2460
+ },
2461
+ ],
2462
+ name: 'org.apache.http.protocol.HttpRequestExecutor.doReceiveResponse(Lorg/apache/http/HttpRequest;Lorg/apache/http/HttpClientConnection;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/HttpResponse;',
2463
+ value: 1,
2464
+ },
2465
+ ],
2466
+ name: 'org.apache.http.protocol.HttpRequestExecutor.execute(Lorg/apache/http/HttpRequest;Lorg/apache/http/HttpClientConnection;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/HttpResponse;',
2467
+ value: 1,
2468
+ },
2469
+ ],
2470
+ name: 'org.apache.http.impl.execchain.MainClientExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
2471
+ value: 1,
2472
+ },
2473
+ ],
2474
+ name: 'org.apache.http.impl.execchain.ProtocolExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
2475
+ value: 1,
2476
+ },
2477
+ ],
2478
+ name: 'org.apache.http.impl.execchain.RetryExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
2479
+ value: 1,
2480
+ },
2481
+ ],
2482
+ name: 'org.apache.http.impl.execchain.RedirectExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
2483
+ value: 1,
2484
+ },
2485
+ ],
2486
+ name: 'org.apache.http.impl.client.InternalHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
2487
+ value: 1,
2488
+ },
2489
+ ],
2490
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/client/methods/HttpUriRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
2491
+ value: 1,
2492
+ },
2493
+ ],
2494
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/client/methods/HttpUriRequest;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
2495
+ value: 1,
2496
+ },
2497
+ ],
2498
+ name: 'com.tencent.tsf.femas.adaptor.tsf.governance.ratelimiter.RequestCollector.report()V',
2499
+ value: 1,
2500
+ },
2501
+ ],
2502
+ name: 'com.tencent.tsf.femas.adaptor.tsf.governance.ratelimiter.RequestCollector$$Lambda$982.1934897224.run()V',
2503
+ value: 1,
2504
+ },
2505
+ ],
2506
+ name: 'java.util.concurrent.Executors$RunnableAdapter.call()Ljava/lang/Object;',
2507
+ value: 1,
2508
+ },
2509
+ ],
2510
+ name: 'java.util.concurrent.FutureTask.runAndReset()Z',
2511
+ value: 1,
2512
+ },
2513
+ ],
2514
+ name: 'java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(Ljava/util/concurrent/ScheduledThreadPoolExecutor$ScheduledFutureTask;)Z',
2515
+ value: 1,
2516
+ },
2517
+ ],
2518
+ name: 'java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run()V',
2519
+ value: 1,
2520
+ },
2521
+ ],
2522
+ name: 'java.util.concurrent.ThreadPoolExecutor.runWorker(Ljava/util/concurrent/ThreadPoolExecutor$Worker;)V',
2523
+ value: 1,
2524
+ },
2525
+ ],
2526
+ name: 'java.util.concurrent.ThreadPoolExecutor$Worker.run()V',
2527
+ value: 1,
2528
+ },
2529
+ {
2530
+ children: [
2531
+ {
2532
+ children: [
2533
+ {
2534
+ children: [
2535
+ {
2536
+ children: [
2537
+ {
2538
+ children: [
2539
+ {
2540
+ children: [
2541
+ {
2542
+ children: [
2543
+ {
2544
+ children: [
2545
+ {
2546
+ children: [
2547
+ {
2548
+ name: '__pthread_cond_timedwait',
2549
+ value: 360,
2550
+ },
2551
+ ],
2552
+ name: 'Unsafe_Park',
2553
+ value: 360,
2554
+ },
2555
+ ],
2556
+ name: 'sun.misc.Unsafe.park(ZJ)V',
2557
+ value: 360,
2558
+ },
2559
+ ],
2560
+ name: 'java.util.concurrent.locks.LockSupport.parkNanos(Ljava/lang/Object;J)V',
2561
+ value: 360,
2562
+ },
2563
+ ],
2564
+ name: 'java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(J)J',
2565
+ value: 360,
2566
+ },
2567
+ ],
2568
+ name: 'java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take()Ljava/util/concurrent/RunnableScheduledFuture;',
2569
+ value: 360,
2570
+ },
2571
+ ],
2572
+ name: 'java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take()Ljava/lang/Object;',
2573
+ value: 360,
2574
+ },
2575
+ ],
2576
+ name: 'java.util.concurrent.ThreadPoolExecutor.getTask()Ljava/lang/Runnable;',
2577
+ value: 360,
2578
+ },
2579
+ ],
2580
+ name: 'java.util.concurrent.ThreadPoolExecutor.runWorker(Ljava/util/concurrent/ThreadPoolExecutor$Worker;)V',
2581
+ value: 360,
2582
+ },
2583
+ ],
2584
+ name: '[unknown]',
2585
+ value: 360,
2586
+ },
2587
+ {
2588
+ children: [
2589
+ {
2590
+ children: [
2591
+ {
2592
+ children: [
2593
+ {
2594
+ children: [
2595
+ {
2596
+ children: [
2597
+ {
2598
+ children: [
2599
+ {
2600
+ name: '__pthread_cond_timedwait',
2601
+ value: 120,
2602
+ },
2603
+ ],
2604
+ name: 'os::sleep(Thread*, long, bool)',
2605
+ value: 120,
2606
+ },
2607
+ ],
2608
+ name: 'JVM_Sleep',
2609
+ value: 120,
2610
+ },
2611
+ ],
2612
+ name: 'java.lang.Thread.sleep(J)V',
2613
+ value: 120,
2614
+ },
2615
+ ],
2616
+ name: 'java.lang.Thread.sleep(JI)V',
2617
+ value: 120,
2618
+ },
2619
+ ],
2620
+ name: 'java.util.concurrent.TimeUnit.sleep(J)V',
2621
+ value: 120,
2622
+ },
2623
+ ],
2624
+ name: 'com.tencent.tsf.femas.common.util.TimeUtil$1.run()V',
2625
+ value: 120,
2626
+ },
2627
+ ],
2628
+ name: 'java.lang.Thread.run()V',
2629
+ value: 481,
2630
+ },
2631
+ {
2632
+ name: 'pthread_join',
2633
+ value: 121,
2634
+ },
2635
+ {
2636
+ children: [
2637
+ {
2638
+ children: [
2639
+ {
2640
+ children: [
2641
+ {
2642
+ children: [
2643
+ {
2644
+ children: [
2645
+ {
2646
+ children: [
2647
+ {
2648
+ children: [
2649
+ {
2650
+ children: [
2651
+ {
2652
+ children: [
2653
+ {
2654
+ children: [
2655
+ {
2656
+ children: [
2657
+ {
2658
+ name: '__pthread_cond_timedwait',
2659
+ value: 120,
2660
+ },
2661
+ ],
2662
+ name: 'Unsafe_Park',
2663
+ value: 120,
2664
+ },
2665
+ ],
2666
+ name: 'sun.misc.Unsafe.park(ZJ)V',
2667
+ value: 120,
2668
+ },
2669
+ ],
2670
+ name: 'java.util.concurrent.locks.LockSupport.parkNanos(Ljava/lang/Object;J)V',
2671
+ value: 120,
2672
+ },
2673
+ ],
2674
+ name: 'java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(J)J',
2675
+ value: 120,
2676
+ },
2677
+ ],
2678
+ name: 'java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take()Ljava/util/concurrent/RunnableScheduledFuture;',
2679
+ value: 120,
2680
+ },
2681
+ ],
2682
+ name: 'java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take()Ljava/lang/Object;',
2683
+ value: 120,
2684
+ },
2685
+ ],
2686
+ name: 'java.util.concurrent.ThreadPoolExecutor.getTask()Ljava/lang/Runnable;',
2687
+ value: 120,
2688
+ },
2689
+ ],
2690
+ name: 'java.util.concurrent.ThreadPoolExecutor.runWorker(Ljava/util/concurrent/ThreadPoolExecutor$Worker;)V',
2691
+ value: 120,
2692
+ },
2693
+ ],
2694
+ name: 'java.util.concurrent.ThreadPoolExecutor$Worker.run()V',
2695
+ value: 120,
2696
+ },
2697
+ ],
2698
+ name: 'org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run()V',
2699
+ value: 120,
2700
+ },
2701
+ {
2702
+ children: [
2703
+ {
2704
+ children: [
2705
+ {
2706
+ children: [
2707
+ {
2708
+ children: [
2709
+ {
2710
+ children: [
2711
+ {
2712
+ children: [
2713
+ {
2714
+ name: '__pthread_cond_timedwait',
2715
+ value: 120,
2716
+ },
2717
+ ],
2718
+ name: 'os::sleep(Thread*, long, bool)',
2719
+ value: 120,
2720
+ },
2721
+ ],
2722
+ name: 'JVM_Sleep',
2723
+ value: 120,
2724
+ },
2725
+ ],
2726
+ name: 'java.lang.Thread.sleep(J)V',
2727
+ value: 120,
2728
+ },
2729
+ ],
2730
+ name: 'com.tencent.tsf.atom.monitor.invocation.aggregator.InvocationAggregator.run()V',
2731
+ value: 120,
2732
+ },
2733
+ ],
2734
+ name: 'java.util.concurrent.ThreadPoolExecutor.runWorker(Ljava/util/concurrent/ThreadPoolExecutor$Worker;)V',
2735
+ value: 120,
2736
+ },
2737
+ ],
2738
+ name: 'java.util.concurrent.ThreadPoolExecutor$Worker.run()V',
2739
+ value: 120,
2740
+ },
2741
+ ],
2742
+ name: 'java.lang.Thread.run()V',
2743
+ value: 240,
2744
+ },
2745
+ {
2746
+ children: [
2747
+ {
2748
+ children: [
2749
+ {
2750
+ children: [
2751
+ {
2752
+ children: [
2753
+ {
2754
+ children: [
2755
+ {
2756
+ children: [
2757
+ {
2758
+ name: '__GI_mprotect',
2759
+ value: 1,
2760
+ },
2761
+ ],
2762
+ name: 'os::serialize_thread_states()',
2763
+ value: 1,
2764
+ },
2765
+ ],
2766
+ name: 'SafepointSynchronize::begin()',
2767
+ value: 1,
2768
+ },
2769
+ ],
2770
+ name: 'VMThread::loop()',
2771
+ value: 1,
2772
+ },
2773
+ ],
2774
+ name: 'VMThread::run()',
2775
+ value: 1,
2776
+ },
2777
+ ],
2778
+ name: 'java_start(Thread*)',
2779
+ value: 1,
2780
+ },
2781
+ ],
2782
+ name: 'start_thread',
2783
+ value: 1,
2784
+ },
2785
+ {
2786
+ children: [
2787
+ {
2788
+ children: [
2789
+ {
2790
+ children: [
2791
+ {
2792
+ children: [
2793
+ {
2794
+ children: [
2795
+ {
2796
+ children: [
2797
+ {
2798
+ name: 'epoll_wait',
2799
+ value: 120,
2800
+ },
2801
+ ],
2802
+ name: 'sun.nio.ch.EPollArrayWrapper.epollWait(JIJI)I',
2803
+ value: 120,
2804
+ },
2805
+ ],
2806
+ name: 'sun.nio.ch.EPollArrayWrapper.poll(J)I',
2807
+ value: 120,
2808
+ },
2809
+ ],
2810
+ name: 'sun.nio.ch.EPollSelectorImpl.doSelect(J)I',
2811
+ value: 120,
2812
+ },
2813
+ ],
2814
+ name: 'sun.nio.ch.SelectorImpl.lockAndDoSelect(J)I',
2815
+ value: 120,
2816
+ },
2817
+ ],
2818
+ name: 'sun.nio.ch.SelectorImpl.select(J)I',
2819
+ value: 120,
2820
+ },
2821
+ ],
2822
+ name: 'org.apache.tomcat.util.net.NioBlockingSelector$BlockPoller.run()V',
2823
+ value: 120,
2824
+ },
2825
+ {
2826
+ children: [
2827
+ {
2828
+ children: [
2829
+ {
2830
+ children: [
2831
+ {
2832
+ children: [
2833
+ {
2834
+ children: [
2835
+ {
2836
+ children: [
2837
+ {
2838
+ children: [
2839
+ {
2840
+ children: [
2841
+ {
2842
+ children: [
2843
+ {
2844
+ children: [
2845
+ {
2846
+ name: '__pthread_cond_timedwait',
2847
+ value: 1198,
2848
+ },
2849
+ ],
2850
+ name: 'Unsafe_Park',
2851
+ value: 1198,
2852
+ },
2853
+ ],
2854
+ name: 'sun.misc.Unsafe.park(ZJ)V',
2855
+ value: 1198,
2856
+ },
2857
+ ],
2858
+ name: 'java.util.concurrent.locks.LockSupport.parkNanos(Ljava/lang/Object;J)V',
2859
+ value: 1198,
2860
+ },
2861
+ ],
2862
+ name: 'java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(J)J',
2863
+ value: 1198,
2864
+ },
2865
+ ],
2866
+ name: 'java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take()Ljava/util/concurrent/RunnableScheduledFuture;',
2867
+ value: 1198,
2868
+ },
2869
+ ],
2870
+ name: 'java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take()Ljava/lang/Object;',
2871
+ value: 1198,
2872
+ },
2873
+ ],
2874
+ name: 'java.util.concurrent.ThreadPoolExecutor.getTask()Ljava/lang/Runnable;',
2875
+ value: 1198,
2876
+ },
2877
+ {
2878
+ children: [
2879
+ {
2880
+ children: [
2881
+ {
2882
+ children: [
2883
+ {
2884
+ children: [
2885
+ {
2886
+ children: [
2887
+ {
2888
+ children: [
2889
+ {
2890
+ children: [
2891
+ {
2892
+ children: [
2893
+ {
2894
+ children: [
2895
+ {
2896
+ children: [
2897
+ {
2898
+ children: [
2899
+ {
2900
+ children: [
2901
+ {
2902
+ children: [
2903
+ {
2904
+ children: [
2905
+ {
2906
+ children: [
2907
+ {
2908
+ children: [
2909
+ {
2910
+ children: [
2911
+ {
2912
+ children: [
2913
+ {
2914
+ children: [
2915
+ {
2916
+ children: [
2917
+ {
2918
+ children: [
2919
+ {
2920
+ children: [
2921
+ {
2922
+ children: [
2923
+ {
2924
+ children: [
2925
+ {
2926
+ children: [
2927
+ {
2928
+ children: [
2929
+ {
2930
+ children: [
2931
+ {
2932
+ children: [
2933
+ {
2934
+ children: [
2935
+ {
2936
+ children: [
2937
+ {
2938
+ children: [
2939
+ {
2940
+ children: [
2941
+ {
2942
+ children: [
2943
+ {
2944
+ children: [
2945
+ {
2946
+ children: [
2947
+ {
2948
+ children: [
2949
+ {
2950
+ children: [
2951
+ {
2952
+ name: '__poll',
2953
+ value: 120,
2954
+ },
2955
+ ],
2956
+ name: 'Java_java_net_SocketInputStream_socketRead0',
2957
+ value: 120,
2958
+ },
2959
+ ],
2960
+ name: 'java.net.SocketInputStream.socketRead0(Ljava/io/FileDescriptor;[BIII)I',
2961
+ value: 120,
2962
+ },
2963
+ ],
2964
+ name: 'java.net.SocketInputStream.socketRead(Ljava/io/FileDescriptor;[BIII)I',
2965
+ value: 120,
2966
+ },
2967
+ ],
2968
+ name: 'java.net.SocketInputStream.read([BIII)I',
2969
+ value: 120,
2970
+ },
2971
+ ],
2972
+ name: 'java.net.SocketInputStream.read([BII)I',
2973
+ value: 120,
2974
+ },
2975
+ ],
2976
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.streamRead([BII)I',
2977
+ value: 120,
2978
+ },
2979
+ ],
2980
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.fillBuffer()I',
2981
+ value: 120,
2982
+ },
2983
+ ],
2984
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.readLine(Lorg/apache/http/util/CharArrayBuffer;)I',
2985
+ value: 120,
2986
+ },
2987
+ ],
2988
+ name: 'org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(Lorg/apache/http/io/SessionInputBuffer;)Lorg/apache/http/HttpResponse;',
2989
+ value: 120,
2990
+ },
2991
+ ],
2992
+ name: 'org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(Lorg/apache/http/io/SessionInputBuffer;)Lorg/apache/http/HttpMessage;',
2993
+ value: 120,
2994
+ },
2995
+ ],
2996
+ name: 'org.apache.http.impl.io.AbstractMessageParser.parse()Lorg/apache/http/HttpMessage;',
2997
+ value: 120,
2998
+ },
2999
+ ],
3000
+ name: 'org.apache.http.impl.DefaultBHttpClientConnection.receiveResponseHeader()Lorg/apache/http/HttpResponse;',
3001
+ value: 120,
3002
+ },
3003
+ ],
3004
+ name: 'org.apache.http.impl.conn.CPoolProxy.receiveResponseHeader()Lorg/apache/http/HttpResponse;',
3005
+ value: 120,
3006
+ },
3007
+ ],
3008
+ name: 'org.apache.http.protocol.HttpRequestExecutor.doReceiveResponse(Lorg/apache/http/HttpRequest;Lorg/apache/http/HttpClientConnection;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/HttpResponse;',
3009
+ value: 120,
3010
+ },
3011
+ ],
3012
+ name: 'org.apache.http.protocol.HttpRequestExecutor.execute(Lorg/apache/http/HttpRequest;Lorg/apache/http/HttpClientConnection;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/HttpResponse;',
3013
+ value: 120,
3014
+ },
3015
+ ],
3016
+ name: 'org.apache.http.impl.execchain.MainClientExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
3017
+ value: 120,
3018
+ },
3019
+ ],
3020
+ name: 'org.apache.http.impl.execchain.ProtocolExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
3021
+ value: 120,
3022
+ },
3023
+ ],
3024
+ name: 'org.apache.http.impl.execchain.RetryExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
3025
+ value: 120,
3026
+ },
3027
+ ],
3028
+ name: 'org.apache.http.impl.execchain.RedirectExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
3029
+ value: 120,
3030
+ },
3031
+ ],
3032
+ name: 'org.apache.http.impl.client.InternalHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
3033
+ value: 120,
3034
+ },
3035
+ ],
3036
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
3037
+ value: 120,
3038
+ },
3039
+ ],
3040
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/client/ResponseHandler;Lorg/apache/http/protocol/HttpContext;)Ljava/lang/Object;',
3041
+ value: 120,
3042
+ },
3043
+ ],
3044
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/client/methods/HttpUriRequest;Lorg/apache/http/client/ResponseHandler;Lorg/apache/http/protocol/HttpContext;)Ljava/lang/Object;',
3045
+ value: 120,
3046
+ },
3047
+ ],
3048
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/client/methods/HttpUriRequest;Lorg/apache/http/client/ResponseHandler;)Ljava/lang/Object;',
3049
+ value: 120,
3050
+ },
3051
+ ],
3052
+ name: 'com.ecwid.consul.transport.AbstractHttpTransport.executeRequest(Lorg/apache/http/client/methods/HttpUriRequest;)Lcom/ecwid/consul/transport/RawResponse;',
3053
+ value: 120,
3054
+ },
3055
+ ],
3056
+ name: 'com.ecwid.consul.transport.AbstractHttpTransport.makeGetRequest(Ljava/lang/String;)Lcom/ecwid/consul/transport/RawResponse;',
3057
+ value: 120,
3058
+ },
3059
+ ],
3060
+ name: 'com.ecwid.consul.v1.ConsulRawClient.makeGetRequest(Ljava/lang/String;Ljava/util/List;)Lcom/ecwid/consul/transport/RawResponse;',
3061
+ value: 120,
3062
+ },
3063
+ ],
3064
+ name: 'com.ecwid.consul.v1.catalog.CatalogConsulClient.getCatalogServices(Lcom/ecwid/consul/v1/catalog/CatalogServicesRequest;)Lcom/ecwid/consul/v1/Response;',
3065
+ value: 120,
3066
+ },
3067
+ ],
3068
+ name: 'com.ecwid.consul.v1.catalog.CatalogConsulClient.getCatalogServices(Lcom/ecwid/consul/v1/QueryParams;Ljava/lang/String;)Lcom/ecwid/consul/v1/Response;',
3069
+ value: 120,
3070
+ },
3071
+ ],
3072
+ name: 'com.ecwid.consul.v1.ConsulClient.getCatalogServices(Lcom/ecwid/consul/v1/QueryParams;Ljava/lang/String;)Lcom/ecwid/consul/v1/Response;',
3073
+ value: 120,
3074
+ },
3075
+ ],
3076
+ name: 'com.tencent.tsf.discovery.TsfCatalogWatch.catalogServicesWatch()V',
3077
+ value: 120,
3078
+ },
3079
+ ],
3080
+ name: 'com.tencent.tsf.discovery.TsfCatalogWatch$$Lambda$1210.2009641590.run()V',
3081
+ value: 120,
3082
+ },
3083
+ {
3084
+ children: [
3085
+ {
3086
+ children: [
3087
+ {
3088
+ children: [
3089
+ {
3090
+ children: [
3091
+ {
3092
+ children: [
3093
+ {
3094
+ children: [
3095
+ {
3096
+ children: [
3097
+ {
3098
+ children: [
3099
+ {
3100
+ children: [
3101
+ {
3102
+ children: [
3103
+ {
3104
+ children: [
3105
+ {
3106
+ children: [
3107
+ {
3108
+ children: [
3109
+ {
3110
+ children: [
3111
+ {
3112
+ children: [
3113
+ {
3114
+ children: [
3115
+ {
3116
+ children: [
3117
+ {
3118
+ children: [
3119
+ {
3120
+ children: [
3121
+ {
3122
+ children: [
3123
+ {
3124
+ children: [
3125
+ {
3126
+ children: [
3127
+ {
3128
+ children: [
3129
+ {
3130
+ children: [
3131
+ {
3132
+ children: [
3133
+ {
3134
+ children: [
3135
+ {
3136
+ children: [
3137
+ {
3138
+ children: [
3139
+ {
3140
+ children: [
3141
+ {
3142
+ children: [
3143
+ {
3144
+ children: [
3145
+ {
3146
+ children: [
3147
+ {
3148
+ children: [
3149
+ {
3150
+ name: '__poll',
3151
+ value: 120,
3152
+ },
3153
+ ],
3154
+ name: 'Java_java_net_SocketInputStream_socketRead0',
3155
+ value: 120,
3156
+ },
3157
+ ],
3158
+ name: 'java.net.SocketInputStream.socketRead0(Ljava/io/FileDescriptor;[BIII)I',
3159
+ value: 120,
3160
+ },
3161
+ ],
3162
+ name: 'java.net.SocketInputStream.socketRead(Ljava/io/FileDescriptor;[BIII)I',
3163
+ value: 120,
3164
+ },
3165
+ ],
3166
+ name: 'java.net.SocketInputStream.read([BIII)I',
3167
+ value: 120,
3168
+ },
3169
+ ],
3170
+ name: 'java.net.SocketInputStream.read([BII)I',
3171
+ value: 120,
3172
+ },
3173
+ ],
3174
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.streamRead([BII)I',
3175
+ value: 120,
3176
+ },
3177
+ ],
3178
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.fillBuffer()I',
3179
+ value: 120,
3180
+ },
3181
+ ],
3182
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.readLine(Lorg/apache/http/util/CharArrayBuffer;)I',
3183
+ value: 120,
3184
+ },
3185
+ ],
3186
+ name: 'org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(Lorg/apache/http/io/SessionInputBuffer;)Lorg/apache/http/HttpResponse;',
3187
+ value: 120,
3188
+ },
3189
+ ],
3190
+ name: 'org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(Lorg/apache/http/io/SessionInputBuffer;)Lorg/apache/http/HttpMessage;',
3191
+ value: 120,
3192
+ },
3193
+ ],
3194
+ name: 'org.apache.http.impl.io.AbstractMessageParser.parse()Lorg/apache/http/HttpMessage;',
3195
+ value: 120,
3196
+ },
3197
+ ],
3198
+ name: 'org.apache.http.impl.DefaultBHttpClientConnection.receiveResponseHeader()Lorg/apache/http/HttpResponse;',
3199
+ value: 120,
3200
+ },
3201
+ ],
3202
+ name: 'org.apache.http.impl.conn.CPoolProxy.receiveResponseHeader()Lorg/apache/http/HttpResponse;',
3203
+ value: 120,
3204
+ },
3205
+ ],
3206
+ name: 'org.apache.http.protocol.HttpRequestExecutor.doReceiveResponse(Lorg/apache/http/HttpRequest;Lorg/apache/http/HttpClientConnection;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/HttpResponse;',
3207
+ value: 120,
3208
+ },
3209
+ ],
3210
+ name: 'org.apache.http.protocol.HttpRequestExecutor.execute(Lorg/apache/http/HttpRequest;Lorg/apache/http/HttpClientConnection;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/HttpResponse;',
3211
+ value: 120,
3212
+ },
3213
+ ],
3214
+ name: 'org.apache.http.impl.execchain.MainClientExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
3215
+ value: 120,
3216
+ },
3217
+ ],
3218
+ name: 'org.apache.http.impl.execchain.ProtocolExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
3219
+ value: 120,
3220
+ },
3221
+ ],
3222
+ name: 'org.apache.http.impl.execchain.RetryExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
3223
+ value: 120,
3224
+ },
3225
+ ],
3226
+ name: 'org.apache.http.impl.execchain.RedirectExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
3227
+ value: 120,
3228
+ },
3229
+ ],
3230
+ name: 'org.apache.http.impl.client.InternalHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
3231
+ value: 120,
3232
+ },
3233
+ ],
3234
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
3235
+ value: 120,
3236
+ },
3237
+ ],
3238
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/client/ResponseHandler;Lorg/apache/http/protocol/HttpContext;)Ljava/lang/Object;',
3239
+ value: 120,
3240
+ },
3241
+ ],
3242
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/client/methods/HttpUriRequest;Lorg/apache/http/client/ResponseHandler;Lorg/apache/http/protocol/HttpContext;)Ljava/lang/Object;',
3243
+ value: 120,
3244
+ },
3245
+ ],
3246
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/client/methods/HttpUriRequest;Lorg/apache/http/client/ResponseHandler;)Ljava/lang/Object;',
3247
+ value: 120,
3248
+ },
3249
+ ],
3250
+ name: 'com.ecwid.consul.transport.AbstractHttpTransport.executeRequest(Lorg/apache/http/client/methods/HttpUriRequest;)Lcom/ecwid/consul/transport/RawResponse;',
3251
+ value: 120,
3252
+ },
3253
+ ],
3254
+ name: 'com.ecwid.consul.transport.AbstractHttpTransport.makeGetRequest(Ljava/lang/String;)Lcom/ecwid/consul/transport/RawResponse;',
3255
+ value: 120,
3256
+ },
3257
+ ],
3258
+ name: 'com.ecwid.consul.v1.ConsulRawClient.makeGetRequest(Ljava/lang/String;Ljava/util/List;)Lcom/ecwid/consul/transport/RawResponse;',
3259
+ value: 120,
3260
+ },
3261
+ ],
3262
+ name: 'com.ecwid.consul.v1.ConsulRawClient.makeGetRequest(Ljava/lang/String;[Lcom/ecwid/consul/UrlParameters;)Lcom/ecwid/consul/transport/RawResponse;',
3263
+ value: 120,
3264
+ },
3265
+ ],
3266
+ name: 'com.ecwid.consul.v1.kv.KeyValueConsulClient.getKVValues(Ljava/lang/String;Ljava/lang/String;Lcom/ecwid/consul/v1/QueryParams;)Lcom/ecwid/consul/v1/Response;',
3267
+ value: 120,
3268
+ },
3269
+ ],
3270
+ name: 'com.ecwid.consul.v1.ConsulClient.getKVValues(Ljava/lang/String;Ljava/lang/String;Lcom/ecwid/consul/v1/QueryParams;)Lcom/ecwid/consul/v1/Response;',
3271
+ value: 120,
3272
+ },
3273
+ ],
3274
+ name: 'com.tencent.tsf.consul.config.ConfigWatch.watchConfig(Ljava/lang/String;)V',
3275
+ value: 120,
3276
+ },
3277
+ ],
3278
+ name: 'com.tencent.tsf.consul.config.ConfigWatch.watchPublicConfig()V',
3279
+ value: 120,
3280
+ },
3281
+ ],
3282
+ name: 'com.tencent.tsf.consul.config.ConfigWatch$$Lambda$1208.1205873289.run()V',
3283
+ value: 120,
3284
+ },
3285
+ ],
3286
+ name: 'org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run()V',
3287
+ value: 240,
3288
+ },
3289
+ ],
3290
+ name: 'java.util.concurrent.Executors$RunnableAdapter.call()Ljava/lang/Object;',
3291
+ value: 240,
3292
+ },
3293
+ ],
3294
+ name: 'java.util.concurrent.FutureTask.runAndReset()Z',
3295
+ value: 240,
3296
+ },
3297
+ ],
3298
+ name: 'java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(Ljava/util/concurrent/ScheduledThreadPoolExecutor$ScheduledFutureTask;)Z',
3299
+ value: 240,
3300
+ },
3301
+ ],
3302
+ name: 'java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run()V',
3303
+ value: 240,
3304
+ },
3305
+ ],
3306
+ name: 'java.util.concurrent.ThreadPoolExecutor.runWorker(Ljava/util/concurrent/ThreadPoolExecutor$Worker;)V',
3307
+ value: 1438,
3308
+ },
3309
+ ],
3310
+ name: 'java.util.concurrent.ThreadPoolExecutor$Worker.run()V',
3311
+ value: 1438,
3312
+ },
3313
+ ],
3314
+ name: 'java.lang.Thread.run()V',
3315
+ value: 1438,
3316
+ },
3317
+ {
3318
+ children: [
3319
+ {
3320
+ children: [
3321
+ {
3322
+ children: [
3323
+ {
3324
+ children: [
3325
+ {
3326
+ children: [
3327
+ {
3328
+ children: [
3329
+ {
3330
+ name: 'pthread_cond_wait@@GLIBC_2.3.2',
3331
+ value: 121,
3332
+ },
3333
+ ],
3334
+ name: 'ObjectMonitor::wait(long, bool, Thread*)',
3335
+ value: 121,
3336
+ },
3337
+ ],
3338
+ name: 'JVM_MonitorWait',
3339
+ value: 121,
3340
+ },
3341
+ ],
3342
+ name: 'java.lang.Object.wait(J)V',
3343
+ value: 121,
3344
+ },
3345
+ ],
3346
+ name: 'java.lang.Object.wait()V',
3347
+ value: 121,
3348
+ },
3349
+ ],
3350
+ name: 'java.lang.ref.Reference.tryHandlePending(Z)Z',
3351
+ value: 121,
3352
+ },
3353
+ ],
3354
+ name: 'java.lang.ref.Reference$ReferenceHandler.run()V',
3355
+ value: 121,
3356
+ },
3357
+ {
3358
+ children: [
3359
+ {
3360
+ children: [
3361
+ {
3362
+ children: [
3363
+ {
3364
+ children: [
3365
+ {
3366
+ children: [
3367
+ {
3368
+ name: '__pthread_cond_timedwait',
3369
+ value: 120,
3370
+ },
3371
+ ],
3372
+ name: 'os::sleep(Thread*, long, bool)',
3373
+ value: 120,
3374
+ },
3375
+ ],
3376
+ name: 'JVM_Sleep',
3377
+ value: 120,
3378
+ },
3379
+ ],
3380
+ name: 'java.lang.Thread.sleep(J)V',
3381
+ value: 120,
3382
+ },
3383
+ ],
3384
+ name: 'com.tencent.qcloudmiddleware.tencentcloudjvmmonitor.jvmmonitoragent.HotspotCommandProcessor.collectJavaFlameGraph(Lcom/tencent/qcloudmiddleware/tencentcloudjvmmonitor/jvmmonitoragent/FlameGraphArguments;Lcom/tencent/qcloudmiddleware/tencentcloudjvmmonitor/utils/Command;)Lcom/tencent/qcloudmiddleware/tencentcloudjvmmonitor/utils/TaskStatusInfo;',
3385
+ value: 120,
3386
+ },
3387
+ ],
3388
+ name: 'com.tencent.qcloudmiddleware.tencentcloudjvmmonitor.jvmmonitoragent.HotspotCommandProcessor$FlameGraphCollectionThread.run()V',
3389
+ value: 120,
3390
+ },
3391
+ {
3392
+ children: [
3393
+ {
3394
+ children: [
3395
+ {
3396
+ children: [
3397
+ {
3398
+ children: [
3399
+ {
3400
+ children: [
3401
+ {
3402
+ children: [
3403
+ {
3404
+ children: [
3405
+ {
3406
+ children: [
3407
+ {
3408
+ children: [
3409
+ {
3410
+ children: [
3411
+ {
3412
+ children: [
3413
+ {
3414
+ children: [
3415
+ {
3416
+ children: [
3417
+ {
3418
+ name: 'epoll_wait',
3419
+ value: 240,
3420
+ },
3421
+ ],
3422
+ name: 'sun.nio.ch.EPollArrayWrapper.epollWait(JIJI)I',
3423
+ value: 240,
3424
+ },
3425
+ ],
3426
+ name: 'sun.nio.ch.EPollArrayWrapper.poll(J)I',
3427
+ value: 240,
3428
+ },
3429
+ ],
3430
+ name: 'sun.nio.ch.EPollSelectorImpl.doSelect(J)I',
3431
+ value: 240,
3432
+ },
3433
+ ],
3434
+ name: 'sun.nio.ch.SelectorImpl.lockAndDoSelect(J)I',
3435
+ value: 240,
3436
+ },
3437
+ ],
3438
+ name: 'sun.nio.ch.SelectorImpl.select(J)I',
3439
+ value: 240,
3440
+ },
3441
+ ],
3442
+ name: 'sun.nio.ch.SelectorImpl.select()I',
3443
+ value: 240,
3444
+ },
3445
+ ],
3446
+ name: 'io.netty.channel.nio.SelectedSelectionKeySetSelector.select()I',
3447
+ value: 240,
3448
+ },
3449
+ ],
3450
+ name: 'io.netty.channel.nio.NioEventLoop.select(J)I',
3451
+ value: 240,
3452
+ },
3453
+ ],
3454
+ name: 'io.netty.channel.nio.NioEventLoop.run()V',
3455
+ value: 240,
3456
+ },
3457
+ ],
3458
+ name: 'io.netty.util.concurrent.SingleThreadEventExecutor$4.run()V',
3459
+ value: 240,
3460
+ },
3461
+ ],
3462
+ name: 'io.netty.util.internal.ThreadExecutorMap$2.run()V',
3463
+ value: 240,
3464
+ },
3465
+ ],
3466
+ name: 'io.netty.util.concurrent.FastThreadLocalRunnable.run()V',
3467
+ value: 240,
3468
+ },
3469
+ {
3470
+ children: [
3471
+ {
3472
+ children: [
3473
+ {
3474
+ children: [
3475
+ {
3476
+ children: [
3477
+ {
3478
+ children: [
3479
+ {
3480
+ children: [
3481
+ {
3482
+ name: 'epoll_wait',
3483
+ value: 120,
3484
+ },
3485
+ ],
3486
+ name: 'sun.nio.ch.EPollArrayWrapper.epollWait(JIJI)I',
3487
+ value: 120,
3488
+ },
3489
+ ],
3490
+ name: 'sun.nio.ch.EPollArrayWrapper.poll(J)I',
3491
+ value: 120,
3492
+ },
3493
+ ],
3494
+ name: 'sun.nio.ch.EPollSelectorImpl.doSelect(J)I',
3495
+ value: 120,
3496
+ },
3497
+ ],
3498
+ name: 'sun.nio.ch.SelectorImpl.lockAndDoSelect(J)I',
3499
+ value: 120,
3500
+ },
3501
+ ],
3502
+ name: 'sun.nio.ch.SelectorImpl.select(J)I',
3503
+ value: 120,
3504
+ },
3505
+ ],
3506
+ name: 'sun.net.httpserver.ServerImpl$Dispatcher.run()V',
3507
+ value: 120,
3508
+ },
3509
+ {
3510
+ children: [
3511
+ {
3512
+ children: [
3513
+ {
3514
+ children: [
3515
+ {
3516
+ children: [
3517
+ {
3518
+ children: [
3519
+ {
3520
+ children: [
3521
+ {
3522
+ children: [
3523
+ {
3524
+ children: [
3525
+ {
3526
+ children: [
3527
+ {
3528
+ children: [
3529
+ {
3530
+ children: [
3531
+ {
3532
+ children: [
3533
+ {
3534
+ children: [
3535
+ {
3536
+ children: [
3537
+ {
3538
+ children: [
3539
+ {
3540
+ children: [
3541
+ {
3542
+ children: [
3543
+ {
3544
+ children: [
3545
+ {
3546
+ children: [
3547
+ {
3548
+ children: [
3549
+ {
3550
+ children: [
3551
+ {
3552
+ children: [
3553
+ {
3554
+ children: [
3555
+ {
3556
+ children: [
3557
+ {
3558
+ children: [
3559
+ {
3560
+ children: [
3561
+ {
3562
+ children: [
3563
+ {
3564
+ children: [
3565
+ {
3566
+ children: [
3567
+ {
3568
+ children: [
3569
+ {
3570
+ children: [
3571
+ {
3572
+ children: [
3573
+ {
3574
+ children: [
3575
+ {
3576
+ children: [
3577
+ {
3578
+ name: '__poll',
3579
+ value: 810,
3580
+ },
3581
+ ],
3582
+ name: 'Java_java_net_SocketInputStream_socketRead0',
3583
+ value: 810,
3584
+ },
3585
+ ],
3586
+ name: 'java.net.SocketInputStream.socketRead0(Ljava/io/FileDescriptor;[BIII)I',
3587
+ value: 810,
3588
+ },
3589
+ ],
3590
+ name: 'java.net.SocketInputStream.socketRead(Ljava/io/FileDescriptor;[BIII)I',
3591
+ value: 810,
3592
+ },
3593
+ ],
3594
+ name: 'java.net.SocketInputStream.read([BIII)I',
3595
+ value: 810,
3596
+ },
3597
+ ],
3598
+ name: 'java.net.SocketInputStream.read([BII)I',
3599
+ value: 810,
3600
+ },
3601
+ ],
3602
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.streamRead([BII)I',
3603
+ value: 810,
3604
+ },
3605
+ ],
3606
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.fillBuffer()I',
3607
+ value: 810,
3608
+ },
3609
+ ],
3610
+ name: 'org.apache.http.impl.io.SessionInputBufferImpl.readLine(Lorg/apache/http/util/CharArrayBuffer;)I',
3611
+ value: 810,
3612
+ },
3613
+ ],
3614
+ name: 'org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(Lorg/apache/http/io/SessionInputBuffer;)Lorg/apache/http/HttpResponse;',
3615
+ value: 810,
3616
+ },
3617
+ ],
3618
+ name: 'org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(Lorg/apache/http/io/SessionInputBuffer;)Lorg/apache/http/HttpMessage;',
3619
+ value: 810,
3620
+ },
3621
+ ],
3622
+ name: 'org.apache.http.impl.io.AbstractMessageParser.parse()Lorg/apache/http/HttpMessage;',
3623
+ value: 810,
3624
+ },
3625
+ ],
3626
+ name: 'org.apache.http.impl.DefaultBHttpClientConnection.receiveResponseHeader()Lorg/apache/http/HttpResponse;',
3627
+ value: 810,
3628
+ },
3629
+ ],
3630
+ name: 'org.apache.http.impl.conn.CPoolProxy.receiveResponseHeader()Lorg/apache/http/HttpResponse;',
3631
+ value: 810,
3632
+ },
3633
+ ],
3634
+ name: 'org.apache.http.protocol.HttpRequestExecutor.doReceiveResponse(Lorg/apache/http/HttpRequest;Lorg/apache/http/HttpClientConnection;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/HttpResponse;',
3635
+ value: 810,
3636
+ },
3637
+ ],
3638
+ name: 'org.apache.http.protocol.HttpRequestExecutor.execute(Lorg/apache/http/HttpRequest;Lorg/apache/http/HttpClientConnection;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/HttpResponse;',
3639
+ value: 810,
3640
+ },
3641
+ ],
3642
+ name: 'org.apache.http.impl.execchain.MainClientExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
3643
+ value: 810,
3644
+ },
3645
+ ],
3646
+ name: 'org.apache.http.impl.execchain.ProtocolExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
3647
+ value: 810,
3648
+ },
3649
+ ],
3650
+ name: 'org.apache.http.impl.execchain.RetryExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
3651
+ value: 810,
3652
+ },
3653
+ ],
3654
+ name: 'org.apache.http.impl.execchain.RedirectExec.execute(Lorg/apache/http/conn/routing/HttpRoute;Lorg/apache/http/client/methods/HttpRequestWrapper;Lorg/apache/http/client/protocol/HttpClientContext;Lorg/apache/http/client/methods/HttpExecutionAware;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
3655
+ value: 810,
3656
+ },
3657
+ ],
3658
+ name: 'org.apache.http.impl.client.InternalHttpClient.doExecute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
3659
+ value: 810,
3660
+ },
3661
+ ],
3662
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/client/methods/CloseableHttpResponse;',
3663
+ value: 810,
3664
+ },
3665
+ ],
3666
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/HttpHost;Lorg/apache/http/HttpRequest;Lorg/apache/http/client/ResponseHandler;Lorg/apache/http/protocol/HttpContext;)Ljava/lang/Object;',
3667
+ value: 810,
3668
+ },
3669
+ ],
3670
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/client/methods/HttpUriRequest;Lorg/apache/http/client/ResponseHandler;Lorg/apache/http/protocol/HttpContext;)Ljava/lang/Object;',
3671
+ value: 810,
3672
+ },
3673
+ ],
3674
+ name: 'org.apache.http.impl.client.CloseableHttpClient.execute(Lorg/apache/http/client/methods/HttpUriRequest;Lorg/apache/http/client/ResponseHandler;)Ljava/lang/Object;',
3675
+ value: 810,
3676
+ },
3677
+ ],
3678
+ name: 'com.ecwid.consul.transport.AbstractHttpTransport.executeRequest(Lorg/apache/http/client/methods/HttpUriRequest;)Lcom/ecwid/consul/transport/RawResponse;',
3679
+ value: 810,
3680
+ },
3681
+ ],
3682
+ name: 'com.ecwid.consul.transport.AbstractHttpTransport.makeGetRequest(Ljava/lang/String;)Lcom/ecwid/consul/transport/RawResponse;',
3683
+ value: 810,
3684
+ },
3685
+ ],
3686
+ name: 'com.ecwid.consul.v1.ConsulRawClient.makeGetRequest(Ljava/lang/String;Ljava/util/List;)Lcom/ecwid/consul/transport/RawResponse;',
3687
+ value: 810,
3688
+ },
3689
+ ],
3690
+ name: 'com.tencent.tsf.femas.config.impl.consul.ConsulConfig$DirChangeNotifier.makeGetRequest()Lcom/ecwid/consul/v1/Response;',
3691
+ value: 810,
3692
+ },
3693
+ ],
3694
+ name: 'com.tencent.tsf.femas.config.impl.consul.ConsulConfig$DirChangeNotifier.processDir()V',
3695
+ value: 810,
3696
+ },
3697
+ ],
3698
+ name: 'com.tencent.tsf.femas.config.impl.consul.ConsulConfig$DirChangeNotifier.run()V',
3699
+ value: 810,
3700
+ },
3701
+ ],
3702
+ name: 'java.util.concurrent.Executors$RunnableAdapter.call()Ljava/lang/Object;',
3703
+ value: 810,
3704
+ },
3705
+ ],
3706
+ name: 'java.util.concurrent.FutureTask.run()V',
3707
+ value: 810,
3708
+ },
3709
+ ],
3710
+ name: 'java.util.concurrent.ThreadPoolExecutor.runWorker(Ljava/util/concurrent/ThreadPoolExecutor$Worker;)V',
3711
+ value: 810,
3712
+ },
3713
+ ],
3714
+ name: 'java.util.concurrent.ThreadPoolExecutor$Worker.run()V',
3715
+ value: 810,
3716
+ },
3717
+ ],
3718
+ name: 'java.lang.Thread.run()V',
3719
+ value: 1170,
3720
+ },
3721
+ {
3722
+ children: [
3723
+ {
3724
+ children: [
3725
+ {
3726
+ children: [
3727
+ {
3728
+ children: [
3729
+ {
3730
+ children: [
3731
+ {
3732
+ children: [
3733
+ {
3734
+ name: 'pthread_cond_wait@@GLIBC_2.3.2',
3735
+ value: 120,
3736
+ },
3737
+ ],
3738
+ name: 'Monitor::IWait(Thread*, long)',
3739
+ value: 120,
3740
+ },
3741
+ ],
3742
+ name: 'Monitor::wait(bool, long, bool)',
3743
+ value: 120,
3744
+ },
3745
+ ],
3746
+ name: 'ServiceThread::service_thread_entry(JavaThread*, Thread*)',
3747
+ value: 120,
3748
+ },
3749
+ ],
3750
+ name: 'JavaThread::thread_main_inner()',
3751
+ value: 120,
3752
+ },
3753
+ ],
3754
+ name: 'java_start(Thread*)',
3755
+ value: 120,
3756
+ },
3757
+ ],
3758
+ name: 'start_thread',
3759
+ value: 120,
3760
+ },
3761
+ {
3762
+ name: 'do_futex_wait.constprop.1',
3763
+ value: 121,
3764
+ },
3765
+ {
3766
+ children: [
3767
+ {
3768
+ children: [
3769
+ {
3770
+ children: [
3771
+ {
3772
+ children: [
3773
+ {
3774
+ children: [
3775
+ {
3776
+ name: '__pthread_cond_timedwait',
3777
+ value: 120,
3778
+ },
3779
+ ],
3780
+ name: 'os::sleep(Thread*, long, bool)',
3781
+ value: 120,
3782
+ },
3783
+ ],
3784
+ name: 'JVM_Sleep',
3785
+ value: 120,
3786
+ },
3787
+ ],
3788
+ name: 'java.lang.Thread.sleep(J)V',
3789
+ value: 120,
3790
+ },
3791
+ ],
3792
+ name: 'org.apache.catalina.core.StandardServer.await()V',
3793
+ value: 120,
3794
+ },
3795
+ ],
3796
+ name: 'org.springframework.boot.web.embedded.tomcat.TomcatWebServer$1.run()V',
3797
+ value: 120,
3798
+ },
3799
+ {
3800
+ children: [
3801
+ {
3802
+ children: [
3803
+ {
3804
+ children: [
3805
+ {
3806
+ children: [
3807
+ {
3808
+ children: [
3809
+ {
3810
+ name: '__pthread_cond_timedwait',
3811
+ value: 120,
3812
+ },
3813
+ ],
3814
+ name: 'ObjectMonitor::wait(long, bool, Thread*)',
3815
+ value: 120,
3816
+ },
3817
+ ],
3818
+ name: 'JVM_MonitorWait',
3819
+ value: 120,
3820
+ },
3821
+ ],
3822
+ name: 'java.lang.Object.wait(J)V',
3823
+ value: 120,
3824
+ },
3825
+ ],
3826
+ name: 'java.util.TimerThread.mainLoop()V',
3827
+ value: 120,
3828
+ },
3829
+ ],
3830
+ name: 'java.util.TimerThread.run()V',
3831
+ value: 120,
3832
+ },
3833
+ {
3834
+ children: [
3835
+ {
3836
+ children: [
3837
+ {
3838
+ children: [
3839
+ {
3840
+ children: [
3841
+ {
3842
+ children: [
3843
+ {
3844
+ children: [
3845
+ {
3846
+ children: [
3847
+ {
3848
+ children: [
3849
+ {
3850
+ name: 'com.tencent.tsf.atom.monitor.invocation.reporter.InvocationStatReporter.reportToLogFile()V',
3851
+ value: 1,
3852
+ },
3853
+ ],
3854
+ name: 'com.tencent.tsf.atom.monitor.invocation.reporter.InvocationStatReporter$1.run()V',
3855
+ value: 1,
3856
+ },
3857
+ ],
3858
+ name: 'java.util.concurrent.Executors$RunnableAdapter.call()Ljava/lang/Object;',
3859
+ value: 1,
3860
+ },
3861
+ ],
3862
+ name: 'java.util.concurrent.FutureTask.runAndReset()Z',
3863
+ value: 1,
3864
+ },
3865
+ ],
3866
+ name: 'java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(Ljava/util/concurrent/ScheduledThreadPoolExecutor$ScheduledFutureTask;)Z',
3867
+ value: 1,
3868
+ },
3869
+ ],
3870
+ name: 'java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run()V',
3871
+ value: 1,
3872
+ },
3873
+ ],
3874
+ name: 'java.util.concurrent.ThreadPoolExecutor.runWorker(Ljava/util/concurrent/ThreadPoolExecutor$Worker;)V',
3875
+ value: 1,
3876
+ },
3877
+ ],
3878
+ name: 'java.util.concurrent.ThreadPoolExecutor$Worker.run()V',
3879
+ value: 1,
3880
+ },
3881
+ ],
3882
+ name: 'java.lang.Thread.run()V',
3883
+ value: 1,
3884
+ },
3885
+ ],
3886
+ name: 'root',
3887
+ value: 11408,
3888
+ },
3889
+ },
3890
+ ],
3891
+ };
3892
+
3893
+ return (
3894
+ <>
3895
+ <div>大量数据-火焰图</div>
3896
+ <BasicFlame {...options} />
3897
+ </>
3898
+ );
3899
+ }