This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a change to branch feature/ui-protocol
in repository https://gitbox.apache.org/repos/asf/incubator-skywalking.git.


    from 20973f5  Announce the version policy
     add be73665  Add a ProtectiveShieldMatcher to prevent match exception.
     add 8a97aad  Fix a comment word.
     add 41e5160  Merge pull request #706 from apache/fix/cant-resolve-types
     add fff0eac  [Agent] Adjust the buired point of okhttp plugin
     add fe4aa75  adjust the comment
     add fcbc8e5  deal with response code
     add 4a98bc9  Merge pull request #709 from ascrutae/fix/okhttp-plugin-issue
     add 18ad96a  [Agent] fix the context is incorrect issue
     add 96e0420  Merge pull request #710 from ascrutae/fix/okhttp-issue
     add 1cc2022  Update readme to update architecture and make document easier 
to find.
     add fd54346  Fix typo
     add 5795b17  Update words.
     add 63070e5  Merge pull request #711 from 
apache/feature/new-architecture-graph
     add 544527c  Adjust many documents.
     add 00523c9  Fix some typo
     add d3d7f9d  Merge pull request #712 from apache/adjust-document
     add fe5ff26  [Agent] Fix interceptor class about concurrent plugin is 
incorrect
     add f40eff5  Provide plugin development guide EN version.
     add 81431e4  Merge pull request #713 from apache/more-en-documents
     add 741058e  Merge branch 'master' into fix/concurrent-plugin-issue
     add 65efb6d  Merge pull request #714 from 
ascrutae/fix/concurrent-plugin-issue
     add d7bc685  [Agent] make the operation name of mongodb span more sences
     add 6b42196  Merge pull request #715 from 
ascrutae/fix/mongodb-operation-name-issue
     new b1f4738  Merge branch 'master' into feature/ui-protocol

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 README.md                                          |   7 +-
 README_ZH.md                                       |  10 +-
 apm-sniffer/apm-agent-core/pom.xml                 |   2 +-
 .../apm/agent/core/logging/api/ILog.java           |   2 +
 .../apm/agent/core/logging/api/NoopLogger.java     |  10 +-
 .../apm/agent/core/logging/core/EasyLogger.java    |   6 +
 .../apm/agent/core/plugin/PluginFinder.java        |   3 +-
 .../core/plugin/match/ProtectiveShieldMatcher.java |  53 ++++
 .../mongodb/v3/MongoDBMethodInterceptor.java       |   2 +-
 .../mongodb/v3/MongoDBMethodInterceptorTest.java   |   2 +-
 ...eInterceptor.java => AsyncCallInterceptor.java} |  40 ++-
 .../apm/plugin/okhttp/v3/EnhanceRequiredInfo.java} |  26 +-
 .../apm/plugin/okhttp/v3/EnqueueInterceptor.java   |  52 ++--
 .../apm/plugin/okhttp/v3/OnFailureInterceptor.java |   6 +-
 .../plugin/okhttp/v3/OnResponseInterceptor.java    |  17 +-
 ...entation.java => AsyncCallInstrumentation.java} |  37 ++-
 .../src/main/resources/skywalking-plugin.def       |   1 +
 .../define/FailureCallbackInstrumentation.java     |   2 +-
 .../define/SuccessCallbackInstrumentation.java     |   2 +-
 docs/README.md                                     |   8 +-
 docs/README_ZH.md                                  |   8 +-
 docs/cn/Application-toolkit-log4j-1.x-CN.md        |   1 -
 docs/cn/Application-toolkit-log4j-2.x-CN.md        |   1 -
 docs/cn/Application-toolkit-logback-1.x-CN.md      |   1 -
 docs/cn/Application-toolkit-trace-CN.md            |   1 -
 docs/cn/How-to-build-CN.md                         |   6 +-
 docs/cn/Plugin-Development-Guide-CN.md             |  71 ++---
 ...-Process-Propagation-Headers-Protocol-CN-v1.md} |   8 +-
 ...e-collector-CN.md => Trace-Data-Protocol-CN.md} |  90 ++++---
 docs/en/Application-toolkit-log4j-1.x.md           |   1 -
 docs/en/Application-toolkit-log4j-2.x.md           |   1 -
 docs/en/Application-toolkit-logback-1.x.md         |   1 -
 docs/en/Application-toolkit-trace.md               |   1 -
 docs/en/Deploy-skywalking-agent.md                 |   4 +-
 docs/en/How-to-build.md                            |  14 +
 docs/en/Plugin-Development-Guide.md                | 290 +++++++++++++++++++++
 ...oss-Process-Propagation-Headers-Protocol-v1.md} |   8 +-
 travis/push_image.sh                               |  34 ---
 38 files changed, 593 insertions(+), 236 deletions(-)
 create mode 100644 
apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/plugin/match/ProtectiveShieldMatcher.java
 copy 
apm-sniffer/apm-sdk-plugin/okhttp-3.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/okhttp/v3/{EnqueueInterceptor.java
 => AsyncCallInterceptor.java} (71%)
 copy 
apm-sniffer/apm-sdk-plugin/{rocketMQ-4.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/rocketMQ/v4/define/SendCallBackEnhanceInfo.java
 => 
okhttp-3.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/okhttp/v3/EnhanceRequiredInfo.java}
 (63%)
 copy 
apm-sniffer/apm-sdk-plugin/okhttp-3.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/okhttp/v3/define/{CallbackInstrumentation.java
 => AsyncCallInstrumentation.java} (78%)
 rename docs/cn/{Skywalking-3-Cross-Process-Propagation-Headers-Protocol-CN.md 
=> Skywalking-Cross-Process-Propagation-Headers-Protocol-CN-v1.md} (81%)
 rename docs/cn/{How-to-communicate-with-the-collector-CN.md => 
Trace-Data-Protocol-CN.md} (76%)
 create mode 100644 docs/en/How-to-build.md
 create mode 100644 docs/en/Plugin-Development-Guide.md
 rename docs/en/{Skywalking-3-Cross-Process-Propagation-Headers-Protocol.md => 
Skywalking-Cross-Process-Propagation-Headers-Protocol-v1.md} (84%)
 delete mode 100644 travis/push_image.sh

-- 
To stop receiving notification emails like this one, please contact
['"commits@skywalking.apache.org" <commits@skywalking.apache.org>'].

Reply via email to