You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2021/03/17 02:03:07 UTC

[skywalking] branch event/jvm updated (03f6a0e -> 3826b73)

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

kezhenxu94 pushed a change to branch event/jvm
in repository https://gitbox.apache.org/repos/asf/skywalking.git.


 discard 03f6a0e  Collect and report agent starting / shutdown events
     add a8810b1  Support metrics grouped by scope labelValue in MAL, no need global same labelValue as before. (#6495)
     add 3826b73  Collect and report agent starting / shutdown events

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (03f6a0e)
            \
             N -- N -- N   refs/heads/event/jvm (3826b73)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 CHANGES.md                                         |   1 +
 .../apm/agent/core/ServiceInstanceGenerator.java   |   2 +-
 .../skywalking/oap/meter/analyzer/Analyzer.java    | 118 ++++----
 .../EndpointEntityDescription.java                 |  28 +-
 .../dsl/EntityDescription/EntityDescription.java   |  18 +-
 .../InstanceEntityDescription.java                 |  28 +-
 .../ServiceEntityDescription.java                  |  30 +-
 .../oap/meter/analyzer/dsl/SampleFamily.java       | 152 ++++++----
 .../oap/meter/analyzer/dsl/AnalyzerTest.java       | 230 +++++++++++++++
 .../oap/meter/analyzer/dsl/ScopeTest.java          | 328 +++++++++++++++++++++
 10 files changed, 777 insertions(+), 158 deletions(-)
 copy test/e2e/e2e-common/src/main/java/org/apache/skywalking/e2e/retryable/RetryableTestContext.java => oap-server/analyzer/meter-analyzer/src/main/java/org/apache/skywalking/oap/meter/analyzer/dsl/EntityDescription/EndpointEntityDescription.java (53%)
 copy test/plugin/scenarios/customize-scenario/src/main/java/test/apache/skywalking/apm/testcase/customize/service/TestService2.java => oap-server/analyzer/meter-analyzer/src/main/java/org/apache/skywalking/oap/meter/analyzer/dsl/EntityDescription/EntityDescription.java (70%)
 copy test/e2e/e2e-common/src/main/java/org/apache/skywalking/e2e/retryable/RetryableTestContext.java => oap-server/analyzer/meter-analyzer/src/main/java/org/apache/skywalking/oap/meter/analyzer/dsl/EntityDescription/InstanceEntityDescription.java (53%)
 copy test/e2e/e2e-common/src/main/java/org/apache/skywalking/e2e/retryable/RetryableTestContext.java => oap-server/analyzer/meter-analyzer/src/main/java/org/apache/skywalking/oap/meter/analyzer/dsl/EntityDescription/ServiceEntityDescription.java (54%)
 create mode 100644 oap-server/analyzer/meter-analyzer/src/test/java/org/apache/skywalking/oap/meter/analyzer/dsl/AnalyzerTest.java
 create mode 100644 oap-server/analyzer/meter-analyzer/src/test/java/org/apache/skywalking/oap/meter/analyzer/dsl/ScopeTest.java