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/01/10 06:10:21 UTC

[skywalking-query-protocol] branch wu-sheng-patch-1 created (now dd24356)

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

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


      at dd24356  Update metric.graphqls

This branch includes the following new commits:

     new dd24356  Update metric.graphqls

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.



[skywalking-query-protocol] 01/01: Update metric.graphqls

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

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

commit dd24356f1223516abe206f4499b2d1e753508446
Author: 吴晟 Wu Sheng <wu...@foxmail.com>
AuthorDate: Fri Jan 10 14:10:14 2020 +0800

    Update metric.graphqls
---
 metric.graphqls | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/metric.graphqls b/metric.graphqls
index 55db791..031c0af 100644
--- a/metric.graphqls
+++ b/metric.graphqls
@@ -69,5 +69,10 @@ type Thermodynamic {
 extend type Query {
     getValues(metric: BatchMetricConditions!, duration: Duration!): IntValues
     getLinearIntValues(metric: MetricCondition!, duration: Duration!): IntValues
+    # Query the type of metrics including multiple values, and format them as multiple linears.
+    # The seq of these multiple lines base on the calculation func in OAL
+    # Such as, should us this to query the result of func percentile(50,75,90,95,99) in OAL,
+    # then five lines will be responsed, p50 is the first element of return value.
+    getMultiLinearsIntValues(metric: MetricCondition!, duration: Duration!): [IntValues!]!
     getThermodynamic(metric: MetricCondition!, duration: Duration!): Thermodynamic
 }