You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicecomb.apache.org by wu...@apache.org on 2019/02/15 02:42:00 UTC

[servicecomb-java-chassis] branch master updated (5d46c29 -> 903e391)

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

wujimin pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/servicecomb-java-chassis.git.


    from 5d46c29  [SCB-638] inject values to config model
     new 1279b18  [SCB-1147] create operation level config model
     new 903e391  [SCB-1147] log slow invocation stage trace information

The 2117 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:
 .../servicecomb/core/CseApplicationListener.java   |   2 +-
 .../org/apache/servicecomb/core/SCBEngine.java     |   9 +-
 .../core/definition/MicroserviceMeta.java          |  12 ++
 .../core/definition/OperationConfig.java           |  76 +++++++
 .../servicecomb/core/definition/OperationMeta.java |  32 ++-
 .../core/definition/TestMicroserviceMeta.java      |   5 +
 .../core/definition/TestOperationMeta.java         |  33 +++
 metrics/metrics-core/pom.xml                       |   4 +
 .../metrics/core/MetricsBootListener.java          |   8 +
 .../metrics/core/publish/SlowInvocationLogger.java | 194 ++++++++++++++++++
 .../core/publish/TestSlowInvocationLogger.java     | 222 +++++++++++++++++++++
 11 files changed, 588 insertions(+), 9 deletions(-)
 create mode 100644 core/src/main/java/org/apache/servicecomb/core/definition/OperationConfig.java
 create mode 100644 metrics/metrics-core/src/main/java/org/apache/servicecomb/metrics/core/publish/SlowInvocationLogger.java
 create mode 100644 metrics/metrics-core/src/test/java/org/apache/servicecomb/metrics/core/publish/TestSlowInvocationLogger.java