1. 20 3月, 2020 1 次提交
  2. 19 3月, 2020 1 次提交
  3. 13 3月, 2020 1 次提交
  4. 11 2月, 2020 1 次提交
    • K
      Set up more strict code styles and fix existing issues (#4337) · 5b255ba3
      kezhenxu94 提交于
      Motivation:
      
      Review code styles with some bots automatically.
      
      Modifications:
      
      Set up ReviewDog in GitHub Action to review code style.
      
      Add more check rules to checkstyle plugin.
      
      Result:
      
      Obvious code styles can be reviewed and commented automatically.
      5b255ba3
  5. 01 2月, 2020 1 次提交
  6. 03 1月, 2020 2 次提交
  7. 25 12月, 2019 1 次提交
  8. 24 12月, 2019 1 次提交
  9. 17 12月, 2019 1 次提交
  10. 15 12月, 2019 1 次提交
    • wu-sheng's avatar
      Remove the local/exit span register mechanism in Java agent scenario (#4059) · 4e501328
      wu-sheng 提交于
      * Remove the local span and exit span register mechanism in Java agent scenario.
      
      * Fix config, plugin, and document, as exit span is not required register anymore.
      
      * Try to fix the test case expected data due to no register for exit span.
      
      * Fix toolkit case.
      
      * Remove exit span from plugin test framework document.
      
      * Update protocol, FAQ, and CHANGELOG documents to highlight this change.
      
      * Fix NPE when no entry span in the whole segment. Set endpoint to null in segment entity.
      
      * Fix the snapshot and add inexistence operation name id.
      
      * Fix several async cases.
      
      * Fix undertow test case.
      
      * Fix wrong error log name.
      
      * Keep name consistent with 6.x concepts.
      
      * Try to fix 3 async scenarios.
      
      * Fix okhttp case.
      
      * Fix Spring Async case.
      
      * Fix another NPE
      
      * Fix NPE when first span has no endpoint id when it is local or exit span.
      
      * Still fill first operation name when no endpoint id.
      4e501328
  11. 14 12月, 2019 1 次提交
  12. 19 11月, 2019 1 次提交
  13. 12 11月, 2019 1 次提交
    • wu-sheng's avatar
      Move to 6.6.0 SNAPSHOT (#3839) · 3fbaec42
      wu-sheng 提交于
      * [maven-release-plugin] prepare release v6.5.0
      
      * [maven-release-plugin] prepare for next development iteration
      3fbaec42
  14. 11 10月, 2019 1 次提交
  15. 16 9月, 2019 1 次提交
  16. 11 9月, 2019 2 次提交
    • Gateway compatible with downstream loss (#3445) · b5b088ac
      于玉桔 提交于
      b5b088ac
    • H
      spring-cloud-gateway traceid does not transmit #3411 (#3446) · 96b2baad
      hi-sb 提交于
      * spring-cloud-gateway traceid does not transmit #3411
      
      skywalking-version:6.5.0
      
      spring-gateway-version:2.1.2
      
      Error Description:
      
       Customize the filter, traceid does not transmit.
      
       "ServerWebExchangeDecorator" is a transport chain,His structure should be like this:
      
      	 serverWebExchangeDecorator
      	    -----(ServerWebExchangeDecorator)delegate
      		    ------(ServerWebExchangeDecorator)delegate
      			  ------.....
      			   -----(DefaultServerWebExchange)delegate
        In the current source code, there is no deep search, but only the next level. When there are multiple custom filters, you get an error.
      
      Repair method:
      
        Look for "delegate" of "ServerWebExchangeDecorator" recursively until "DefaultServerWebExchange"
      
      * spring-boot-webflux traceid does not transmit #3411
      
      spring-boot-starter-webflux-version:2.1.6
      
      Error Description:
      
      Customize the filter, traceid does not transmit.
      
      "ServerWebExchangeDecorator" is a transport chain,His structure should be like this:
      
       serverWebExchangeDecorator
          -----(ServerWebExchangeDecorator)delegate
      	    ------(ServerWebExchangeDecorator)delegate
      		  ------.....
      		   -----(DefaultServerWebExchange)delegate
      
      In the current source code, there is no deep search, but only the next level. When there are multiple custom filters, you get an error.
      
      Repair method:
      
      Look for "delegate" of "ServerWebExchangeDecorator" recursively until "DefaultServerWebExchange"
      
      * checkStyle
      96b2baad
  17. 09 9月, 2019 1 次提交
    • wu-sheng's avatar
      Move to 6.5.0 (#3439) · ce20fe10
      wu-sheng 提交于
      * [maven-release-plugin] prepare release v6.4.0
      
      * [maven-release-plugin] prepare for next development iteration
      ce20fe10
  18. 05 9月, 2019 1 次提交
  19. 02 9月, 2019 1 次提交
  20. 27 8月, 2019 1 次提交
    • wu-sheng's avatar
      Support op group name in agent config core. (#3299) · a3241f0a
      wu-sheng 提交于
      * Support op group name in agent config core.
      
      * Provide core API for operation name grouping, rest template plugin update, and doc update.
      
      * Fix doc
      
      * Fix test case.
      
      * Fix missing changes.
      
      * add shuyun to powered-by.md (#3341)
      
      * add shuyun to powered-by.md
      
      * update powered-by.md
      
      * Remove static method.
      a3241f0a
  21. 13 8月, 2019 1 次提交
  22. 10 8月, 2019 1 次提交
  23. 05 8月, 2019 1 次提交
  24. 03 8月, 2019 1 次提交
  25. 25 7月, 2019 1 次提交
  26. 22 7月, 2019 1 次提交
    • L
      Support servlet 2.5 for Jetty,Tomcat,SpringMvc (#3120) · 137b142a
      li.can 提交于
      * servlet 2.5
      
      * method exist
      
      * update MethodUtil
      
      * Update MethodUtil.java
      
      Add a comment to the new core util method. @candyleer I am concerning this method will be used widely even unnecessary.
      137b142a
  27. 15 7月, 2019 1 次提交
  28. 02 7月, 2019 1 次提交
    • Spring @Async plugin support (#2902) · 48ffd092
      于玉桔 提交于
      * spring_async_plugin
      
      * fix
      
      * fix
      
      * fix
      
      * fix
      
      * format fix
      
      * rename
      
      * fix
      
      * fix version
      
      * Update SWCallable.java
      
      * Update Supported-list.md
      
      * Update Supported-list.md
      48ffd092
  29. 29 6月, 2019 1 次提交
    • wu-sheng's avatar
      Move master to 6.3.0 (#2968) · 4faa950c
      wu-sheng 提交于
      * [maven-release-plugin] prepare release v6.2.0
      
      * [maven-release-plugin] prepare for next development iteration
      4faa950c
  30. 27 6月, 2019 1 次提交
  31. 20 6月, 2019 1 次提交
  32. 20 5月, 2019 1 次提交
  33. 07 5月, 2019 1 次提交
  34. 30 4月, 2019 1 次提交
    • wu-sheng's avatar
      Move to 6.2 (#2563) · 9b87086d
      wu-sheng 提交于
      * Move submodule plugin.
      
      * Always auto-submodule
      
      * [maven-release-plugin] prepare release v6.1.0
      
      * [maven-release-plugin] prepare for next development iteration
      
      * Change keys location.
      9b87086d
  35. 29 4月, 2019 1 次提交
    • X
      Fix #2546 (#2551) · 31cb96d9
      Xin,Zhang 提交于
      * Fix #2546
      
      * Change the stackdepth type
      
      * Fix bug
      
      * Fix CI failed
      31cb96d9
  36. 28 4月, 2019 1 次提交
  37. 14 4月, 2019 1 次提交
  38. 18 3月, 2019 1 次提交