You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2020/04/29 07:59:45 UTC

[skywalking] branch active_span_enhan updated (45929c1 -> 894730f)

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

wusheng pushed a change to branch active_span_enhan
in repository https://gitbox.apache.org/repos/asf/skywalking.git.


    from 45929c1  fix data.
     add 4a8f86f  Use the built-in ability to check out submodules (#4728)
     add 217bb62  Support percentile function in the meter system. (#4725)
     add 894730f  Merge branch 'master' into active_span_enhan

No new revisions were added by this update.

Summary of changes:
 .github/workflows/ci-it.yaml                       |  23 +-
 .github/workflows/docker-ci.yaml                   |  12 +-
 .github/workflows/e2e.cluster.yaml                 |   7 +-
 .github/workflows/e2e.go.yaml                      |   7 +-
 .github/workflows/e2e.jdk-versions.yaml            |   7 +-
 .github/workflows/e2e.php.yaml                     |   7 +-
 .github/workflows/e2e.profiling.yaml               |   7 +-
 .github/workflows/e2e.storages.yaml                |   7 +-
 .github/workflows/e2e.ttl.yaml                     |   7 +-
 .github/workflows/e2e.yaml                         |  21 +-
 .github/workflows/istio-mixer-ci.yaml              |   8 +-
 .github/workflows/plugins-test.0.yaml              |   7 +-
 .github/workflows/plugins-test.1.yaml              |   7 +-
 .github/workflows/plugins-test.2.yaml              |   7 +-
 .github/workflows/plugins-test.3.yaml              |  16 +-
 docs/en/concepts-and-designs/meter.md              |   7 +-
 .../skywalking/oal/rt/parser/AnalysisResult.java   |   2 +-
 .../oal/rt/parser/PersistenceColumns.java          |  12 +-
 .../skywalking/oal/rt/parser/PersistenceField.java |   4 +-
 .../code-templates/metrics/deserialize.ftl         |   2 +-
 .../server/core/analysis/meter/MeterSystem.java    |  19 +-
 .../analysis/meter/function/HistogramFunction.java |  15 --
 .../meter/function/PercentileFunction.java         | 297 +++++++++++++++++++++
 .../oap/server/core/analysis/metrics/IntList.java  |  87 ++++++
 .../meter/function/PercentileFunctionTest.java     | 208 +++++++++++++++
 .../provider/PrometheusFetcherProvider.java        |  37 +++
 .../elasticsearch/base/ColumnTypeEsMapping.java    |   4 +-
 .../plugin/jdbc/h2/dao/H2TableInstaller.java       |   4 +-
 .../plugin/jdbc/mysql/MySQLTableInstaller.java     |   4 +-
 29 files changed, 707 insertions(+), 145 deletions(-)
 create mode 100644 oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/analysis/meter/function/PercentileFunction.java
 create mode 100644 oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/analysis/metrics/IntList.java
 create mode 100644 oap-server/server-core/src/test/java/org/apache/skywalking/oap/server/core/analysis/meter/function/PercentileFunctionTest.java