1. 12 11月, 2019 1 次提交
  2. 10 11月, 2019 1 次提交
  3. 09 11月, 2019 1 次提交
  4. 06 11月, 2019 2 次提交
  5. 04 11月, 2019 1 次提交
  6. 03 11月, 2019 1 次提交
  7. 28 10月, 2019 4 次提交
  8. 27 10月, 2019 1 次提交
  9. 25 10月, 2019 2 次提交
    • wu-sheng's avatar
      Remove a definition. (#3706) · f8f31f40
      wu-sheng 提交于
      f8f31f40
    • S
      feat: add support of mongodb v3.7.x or higher (#3591) · 80af1667
      scolia 提交于
      * feat: add support of mongodb v3.7.x or higher
      
      * feat: remove mapping, using EnhancedInstance to mark remotePeer
      
      * feat: add support of v3.6.x
      
      * fix: disable support will 3.6.x, which will throw ClassCircularityError exception
      
      * style: clean code
      
      * fix support of 3.8.x~3.11.1, update test case and doc
      
      * update stage name
      
      * rename class
      
      * rename stage
      80af1667
  10. 23 10月, 2019 1 次提交
    • 静夜思朝颜's avatar
      Provide agent plugin netty-socketio (#3640) · c640b512
      静夜思朝颜 提交于
      * add plugin netty-socketio https://github.com/mrniko/netty-socketio
      
      * delete create exit span interceptor.
      
      * delete create exit span interceptor testcase.
      
      * delete create exit span interceptor testcase.
      
      * add constructor test unit
      
      * change bind on random port in test case
      
      * reverse upstream master whitespace
      
      * resolve build_id param
      
      * delete health check segment test case
      
      * add ContextManager.isActive check before use activeSpan invoke
      
      * remove unnecessary code and blank line
      c640b512
  11. 22 10月, 2019 1 次提交
  12. 11 10月, 2019 1 次提交
  13. 10 10月, 2019 1 次提交
  14. 07 10月, 2019 1 次提交
  15. 25 9月, 2019 1 次提交
    • L
      Add pulsar apm plugin (#3476) · a8742514
      lipenghui 提交于
      * Add pulsar apm plugin.
      
      * Fix check style
      
      * Fix pulsar consumer component define.
      
      * Add pulsar to component-libraries.yml
      
      * Fix error interceptor class.
      
      * Add pulsar to agent support list.
      
      * Add Pulsar to ComponentsDefine and component-libraries.yml
      
      * Move create entry span log of consumer from after method to before method
      
      * Fix send callback issue when exception cause.
      
      * Fix test issues
      
      * Move pulsar plugin to optional plugins
      
      * Add none messages tests for interceptor of producer and consumer.
      
      * Remove unused comments.
      
      * Move pulsar plugin back to the apm-sdk-plugin
      
      * Fix comments
      
      * remove set startTime for entry span(default is set by System.currentTimeMillis)
      
      * Fix comments
      a8742514
  16. 24 9月, 2019 1 次提交
  17. 20 9月, 2019 1 次提交
  18. 19 9月, 2019 1 次提交
  19. 18 9月, 2019 1 次提交
    • 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
  20. 17 9月, 2019 1 次提交
  21. 16 9月, 2019 1 次提交
  22. 13 9月, 2019 1 次提交
  23. 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
  24. 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
  25. 05 9月, 2019 1 次提交
  26. 04 9月, 2019 1 次提交
    • 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
  27. 02 9月, 2019 1 次提交
  28. 01 9月, 2019 1 次提交
  29. 30 8月, 2019 2 次提交
  30. 29 8月, 2019 3 次提交
  31. 28 8月, 2019 1 次提交
    • S
      ADD: add operationName length threshold (#3357) · 3d00d83f
      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
      3d00d83f