1. 25 9月, 2019 1 次提交
    • K
      sync ui (#3517) · 632e6b75
      Kdump 提交于
      * sync ui
      
      * sync skywalking-query-protocol
      sync ui
      
      * sync skywalking-query-protocol
      
      sync ui
      
      * sync ui
      632e6b75
  2. 24 9月, 2019 1 次提交
  3. 23 9月, 2019 4 次提交
  4. 22 9月, 2019 5 次提交
  5. 20 9月, 2019 2 次提交
  6. 19 9月, 2019 3 次提交
  7. 18 9月, 2019 2 次提交
    • L
      Add Light4j plugin (#3323) · 72f07b81
      Louis Tsui 提交于
      * Add Light4J 1.6.x plug-in
      
      * Add unit test for Light4J plug-in
      
      * Add missing id to server-starter
      
      * Remove mentions of version 1.6.x
      
      Some local testing showed that the plugin successfully generated traces for a light4j project built with light-codegen v2.x. Therefore, there is no need for a separate plugin for v2.x and no distinction needs to be made with light4j v1.6.x.
      
      * Update supported light4j versions
      
      * Use ContextSnapshot to maintain trace
      
      In a typical Light4j project, the ExceptionHandler#handleRequest is the asynchronous execution point. The flow is ExceptionHandler#handleRequest -> HttpServerExchange#dispatch -> ... -> ExceptionHandler#handleRequest. This means that handleRequest is being intercepted twice and each time a LocalSpan is created. Without handling thread propagation, the trace segment gets split up.
      
      By saving a ContextSnapshot into the enhanced object (ExceptionHandler), we can determine if it is necessary to continue the segment.
      
      * Update logic for span creation in trace
      
      By default, the Light4J plugin now overrides the Undertow plugin's entry span with its own. This new entry span is created just before execution of the ExceptionHandler#handleRequest in the I/O thread. The entry span is generated here because it is considered the starting point of the Light4J handler chain.
      
      There is now also the option to enable detailed span creation when tracing requests through Light4J. These local spans mark which middleware and business handlers are involved with handling the HTTP request to a Light4J service.
      
      * Update skywalking version
      
      * Update light4j version
      
      * Fix LightInstrumentation javadoc
      
      * Remove import violating checkstyle
      
      This import was added from the link reference in the javadoc. The javadoc has now been changed to just reference the method name.
      
      * Move light4j agent config property
      
      * Sync UI
      72f07b81
    • Y
      correct a typo (#3483) · ad45a94a
      yuyujulin 提交于
      ad45a94a
  8. 17 9月, 2019 2 次提交
  9. 16 9月, 2019 1 次提交
  10. 13 9月, 2019 3 次提交
  11. 12 9月, 2019 1 次提交
  12. 11 9月, 2019 3 次提交
    • 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
    • wu-sheng's avatar
      Fill my FAQ reply in official document. (#3450) · e1ce6edf
      wu-sheng 提交于
      * Fill my FAQ reply in official document.
      
      * Add image.
      e1ce6edf
  13. 10 9月, 2019 1 次提交
    • K
      Add TTL E2E test (#3437) · 721f8648
      kezhenxu94 提交于
      * Add TTL E2E test
      
      * Add to Jenkins stage and minor bugfix
      
      * Upgrade e2e container version
      
      * Polish and minor fix
      
      * Polish
      721f8648
  14. 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
  15. 08 9月, 2019 1 次提交
  16. 07 9月, 2019 1 次提交
  17. 06 9月, 2019 1 次提交
  18. 05 9月, 2019 3 次提交
  19. 04 9月, 2019 3 次提交
    • X
      #106 cache/persist page query states (#3406) · 36a36017
      x22x22 提交于
      36a36017
    • S
      MOD: Modify compatibility of kafka plugin and expand operationName (#3390) · 05d9c0a9
      Stalary 提交于
      * ADD: add operationName length threshold
      
      * MOD:move operationName threshold to Config, simplified code
      
      * MOD:update agent set-up document, clean code
      
      * MOD:add agent.operation_name_threshold conf prefix
      
      * MOD: Modify compatibility of kafka plugin and expand operationName
      
      * MOD: Delete localSpan layer, modify consumer operationName, delete producer key
      
      * MOD: Modify operationName, reduce String operation
      
      * FIX: Fix callback break, the new version of kafka callback is intercepted twice and needs to be judged
      
      * FIX: Fix different problems with KafkaProducer constructor in old and new versions
      
      * MOD: separate code
      05d9c0a9
    • wu-sheng's avatar
      Add changelog for 6.4.0 release. (#3398) · b0d35981
      wu-sheng 提交于
      * Add changelog for 6.4.0 release.
      
      * Update CHANGES.md
      
      ES storage column type changed for pxx details. It wouldn't really 100% compatible.
      b0d35981
  20. 03 9月, 2019 1 次提交