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 2019/05/09 07:59:27 UTC

[skywalking-query-protocol] branch new-topology created (now 6a5bc4a)

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

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


      at 6a5bc4a  Update topology.graphqls

This branch includes the following new commits:

     new 6a5bc4a  Update topology.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 topology.graphqls

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

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

commit 6a5bc4ae3a8e654725d9419066418044a835de00
Author: 吴晟 Wu Sheng <wu...@foxmail.com>
AuthorDate: Thu May 9 15:59:23 2019 +0800

    Update topology.graphqls
---
 topology.graphqls | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/topology.graphqls b/topology.graphqls
index af7e070..08b3333 100644
--- a/topology.graphqls
+++ b/topology.graphqls
@@ -40,11 +40,14 @@ type Node {
 # from the `source` to the `target`.
 type Call {
     source: ID!
+    # The protocol and tech stack used at source side in this distributed call
+    sourceComponents: [ID!]!
     target: ID!
-    # The protocol and tech stack used in this distributed call
-    callType: String!
+    # The protocol and tech stack used at target side in this distributed call
+    targetComponents: [ID!]!
     id: ID!
-    detectPoint: DetectPoint!
+    # The detect Points of this distributed call.
+    detectPoints: [DetectPoint!]!
 }
 
 enum NodeType {