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/18 14:36:26 UTC

[skywalking-query-protocol] branch master updated (36bfc76 -> 3751b2e)

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

wusheng pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-query-protocol.git.


    from 36bfc76  Fix readMetricsValues return value.
     new 93ea3e4  Rename two fields to be more clear.
     new 3751b2e  Change heatmap definition.

The 2 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:
 metrics-v2.graphqls | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)


[skywalking-query-protocol] 01/02: Rename two fields to be more clear.

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

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-query-protocol.git

commit 93ea3e47e98aa334fa1258684147599e13529341
Author: Wu Sheng <wu...@foxmail.com>
AuthorDate: Sat Apr 18 17:39:23 2020 +0800

    Rename two fields to be more clear.
---
 metrics-v2.graphqls | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/metrics-v2.graphqls b/metrics-v2.graphqls
index 0ed5f10..502cc7d 100644
--- a/metrics-v2.graphqls
+++ b/metrics-v2.graphqls
@@ -98,8 +98,10 @@ type HeatMap {
 
 # Bucket represents the value range.
 type Bucket {
-    start: Int!
-    end: Int!
+    # The min value of this bucket representing.
+    min: Int!
+    # The max value of this bucket representing.
+    max: Int!
 }
 
 type SelectedRecord {


[skywalking-query-protocol] 02/02: Change heatmap definition.

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

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-query-protocol.git

commit 3751b2e570797286cf51ecfdae78a7059d805bac
Author: Wu Sheng <wu...@foxmail.com>
AuthorDate: Sat Apr 18 22:35:40 2020 +0800

    Change heatmap definition.
---
 metrics-v2.graphqls | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/metrics-v2.graphqls b/metrics-v2.graphqls
index 502cc7d..a964296 100644
--- a/metrics-v2.graphqls
+++ b/metrics-v2.graphqls
@@ -91,11 +91,16 @@ type MetricsValues {
 type HeatMap {
     # Each element of values matches the time point of the query duration.
     # The element in the IntValues represents the value of the same index bucket
-    values: [IntValues!]!
+    values: [HeatMapColumn!]!
     # Bucket describes the ranges of #values represent.
     buckets: [Bucket!]!
 }
 
+type HeatMapColumn {
+    id: ID!
+    values: [Long!]!
+}
+
 # Bucket represents the value range.
 type Bucket {
     # The min value of this bucket representing.