You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@skywalking.apache.org by wu...@apache.org on 2018/09/11 08:22:40 UTC

[incubator-skywalking] branch heatmap-indicator updated (05b5083 -> 3c38156)

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

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


    from 05b5083  Add ThermodynamicIndicator and its test. Also ALL source Thermodynamic metric.
     add 5a55b9b  Provide Pxx(p99,p95,p90,p75,p50) indicators and All dispatcher (#1654)
     new 3c38156  Merge branch 'master' into heatmap-indicator

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:
 .../skywalking/oap/server/core/analysis/generated/all/AllDispatcher.java | 1 +
 1 file changed, 1 insertion(+)


[incubator-skywalking] 01/01: Merge branch 'master' into heatmap-indicator

Posted by wu...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch heatmap-indicator
in repository https://gitbox.apache.org/repos/asf/incubator-skywalking.git

commit 3c3815663b03c136996c1a5686e48ac3e2b139d7
Merge: 05b5083 5a55b9b
Author: 吴晟 Wu Sheng <wu...@foxmail.com>
AuthorDate: Tue Sep 11 16:22:38 2018 +0800

    Merge branch 'master' into heatmap-indicator

 .../skywalking/oap/server/core/analysis/generated/all/AllDispatcher.java | 1 +
 1 file changed, 1 insertion(+)

diff --cc oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/analysis/generated/all/AllDispatcher.java
index 2e3dabb,486e518..c778992
--- a/oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/analysis/generated/all/AllDispatcher.java
+++ b/oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/analysis/generated/all/AllDispatcher.java
@@@ -78,12 -77,4 +78,13 @@@ public class AllDispatcher implements S
          indicator.combine(source.getLatency(), 10);
          IndicatorProcess.INSTANCE.in(indicator);
      }
++
 +    private void doAllHeatmap(All source) {
 +        AllHeatmapIndicator indicator = new AllHeatmapIndicator();
 +
 +
 +        indicator.setTimeBucket(source.getTimeBucket());
 +        indicator.combine(source.getLatency(), 100, 20);
 +        IndicatorProcess.INSTANCE.in(indicator);
 +    }
  }