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:27 UTC

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

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 {