1. 25 12月, 2019 2 次提交
  2. 21 12月, 2019 1 次提交
  3. 17 12月, 2019 2 次提交
  4. 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
  5. 27 11月, 2019 1 次提交
  6. 20 11月, 2019 1 次提交
  7. 19 11月, 2019 1 次提交
  8. 10 11月, 2019 1 次提交
  9. 28 10月, 2019 1 次提交
  10. 06 10月, 2019 1 次提交
  11. 20 9月, 2019 1 次提交
  12. 19 9月, 2019 1 次提交
  13. 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
  14. 17 9月, 2019 1 次提交
  15. 29 8月, 2019 1 次提交
  16. 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
  17. 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
  18. 14 8月, 2019 2 次提交
  19. 11 8月, 2019 1 次提交
  20. 03 8月, 2019 1 次提交
    • L
      Add jdk http plugin (#3171) · 6e837153
      li.can 提交于
      * add http
      
      * update plugin
      
      * Add StaticMethodsAroundInterceptor to be injected.
      
      * move to options plugin
      
      * move folder
      
      * update pom
      
      * support https
      
      * add witness class
      
      * Make JDK9-11 available for bootstrap instrumentation
      
      * Remove temp folder of old bootstrap instrumentation requirement.
      
      * remove witness ,work for jdk6,7,8,9,10,11
      
      * Make JDK 12 works.
      
      * move jdk-http-plugin to bootstrap-plugins folder
      
      * add httpsclient
      
      * update README.md
      6e837153
  21. 02 8月, 2019 1 次提交
  22. 31 7月, 2019 2 次提交
  23. 28 7月, 2019 1 次提交
  24. 25 7月, 2019 1 次提交
  25. 20 7月, 2019 1 次提交
  26. 23 6月, 2019 1 次提交
    • wu-sheng's avatar
      Fix OOM by empty stack of exception. (#2931) · d844a525
      wu-sheng 提交于
      * Support bootstrap class enhance and fix OOM by empty stack of exception.
      
      * Agent document update
      
      * Remove a word.
      
      * Fix wrong cause exception search.
      
      * Fix the condition
      
      * Revert bootstrap class loader enhance.
      
      * Remove import.
      
      * no message
      d844a525
  27. 19 6月, 2019 1 次提交
  28. 17 6月, 2019 1 次提交
  29. 14 6月, 2019 1 次提交
    • wu-sheng's avatar
      Revert SolrJ plugin. (#2871) · 0f9c27d4
      wu-sheng 提交于
      * Revert SolrJ plugin.
      
      * Remove an unexpected test case.
      
      * Revert "Remove an unexpected test case."
      
      This reverts commit 359990e18b0c0ae1a6e1005ff985bf237ec05619.
      
      * Clear context.
      
      * Fix a leak.
      0f9c27d4
  30. 05 6月, 2019 1 次提交
    • D
      Provide plugin for Solr-7.x(client) (#2730) · 6ae51742
      daming 提交于
      * new branch for solrj-plugin
      
      * rollback and add module solrj-plugin
      
      * preparing to pr
      
      * to resolve reviewers' suggestions
      
      * remove unused code
      
      * remove unused code
      
      * remove unused comments
      
      * To avoid NPE
      
      * fix typo
      
      * Change to JRE6
      
      * fix pom.xml merge incorrectly. and java.net.URL instead of Regex
      
      * Using RuntimeContext instead of ThreadLocal
      
      * To reduce unnecessary tags
      
      * add test cases
      
      * fix validation fail
      
      * add solrj-plugin into component-libraries & Supported-list
      
      * to trace all patch to avoid recheck status of span
      
      * remove unnecessary properites
      
      * remove unnecessary tags
      
      * Add the config to document of setup
      6ae51742
  31. 20 5月, 2019 1 次提交
  32. 13 3月, 2019 3 次提交
    • B
      updated to operation name · 7322ea86
      Brandon Fergerson 提交于
      7322ea86
    • B
      add to docs · 7e313313
      Brandon Fergerson 提交于
      7e313313
    • Customize Enhance code of plugin (#2300) · 8c3b9517
      于玉桔 提交于
      * Submit custom enhancement kernel code for the first time.
      
      * Submit the code again.
      
      * Optimize ClassUtil code.
      
      * Submit custom enhancement plugin code for the first time.
      
      * To fix CI issue.
      
      * To fix CI header Tmp issue
      
      * To fix CI Tmp header issue
      
      * Customize plugin code submission
      
      * Add md file.
      
      * Fix some bug.
      
      * Fix ci issue
      
      * Fix md desc
      
      * Fix unapproved license
      
      * Fix bug
      
      * Fix collection bug.
      
      * Fix java8 pair ref issue
      
      * Fix CI issue.
      
      * Add more detail for expression.
      
      * Fix review issue
      
      * Fix review issue 2
      
      * Fix review code issue 2
      
      * Fix md issue
      
      * Fix bug and op desc md.
      
      * Update customize-enhance-trace.md
      
      * Update customize-enhance-trace.md
      
      * FIx code review issue.
      8c3b9517
  33. 08 3月, 2019 1 次提交
  34. 04 3月, 2019 1 次提交