You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by da...@apache.org on 2020/08/15 15:06:18 UTC

[skywalking] branch queue updated (df3c5fb -> db25599)

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

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


    from df3c5fb  Miss topic in the KafkaServiceManagementServiceClient
     add 68eba15  Add latest function (#5321)
     add db25599  Merge branch 'master' into queue

No new revisions were added by this update.

Summary of changes:
 .../{AvgFunction.java => LatestFunction.java}      | 94 ++++++++--------------
 .../promethues/PrometheusMetricConverter.java      | 20 ++++-
 .../oap/server/core/query/MetricsQueryService.java |  2 +-
 .../oap/server/core/query/sql/Function.java        |  2 +-
 .../oap/server/core/query/type/IntValues.java      |  5 ++
 .../core/storage/query/IMetricsQueryDAO.java       |  5 +-
 .../meter/function/LatestFunctionTest.java         | 82 +++++++++++++++++++
 .../oap/query/graphql/resolver/MetricsQuery.java   |  2 +-
 .../src/main/resources/query-protocol              |  2 +-
 .../elasticsearch/query/MetricsQueryEsDAO.java     | 16 ++--
 .../elasticsearch7/query/MetricsQueryEs7DAO.java   | 20 +++--
 .../plugin/influxdb/query/MetricsQuery.java        | 10 ++-
 .../plugin/jdbc/h2/dao/H2MetricsQueryDAO.java      | 10 ++-
 13 files changed, 181 insertions(+), 89 deletions(-)
 copy oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/analysis/meter/function/{AvgFunction.java => LatestFunction.java} (64%)
 create mode 100644 oap-server/server-core/src/test/java/org/apache/skywalking/oap/server/core/analysis/meter/function/LatestFunctionTest.java