This is an automated email from the ASF dual-hosted git repository.
tanjian pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-query-protocol.git
The following commit(s) were added to refs/heads/master by this push:
new 0bd1047 add getServiceInstanceTopology
new d787ffe Merge pull request #19 from arugal/feature/instancedep
0bd1047 is described below
commit 0bd104708d2fdd1fb498d4c4dc2244463974e45d
Author: zhangwei <[email protected]>
AuthorDate: Wed Nov 27 23:38:23 2019 +0800
add getServiceInstanceTopology
---
topology.graphqls | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/topology.graphqls b/topology.graphqls
index 08b3333..27b9a56 100644
--- a/topology.graphqls
+++ b/topology.graphqls
@@ -58,10 +58,12 @@ enum NodeType {
extend type Query {
- # Query the global topolgoy
+ # Query the global topology
getGlobalTopology(duration: Duration!): Topology
# Query the topology, based on the given service
getServiceTopology(serviceId: ID!, duration: Duration!): Topology
+ # Query the instance topology, based on the given clientServiceId and
serverServiceId
+ getServiceInstanceTopology(clientServiceId: ID!, serverServiceId: ID!,
duration: Duration!): Topology
# Query the topology, based on the given endpoint
getEndpointTopology(endpointId: ID!, duration: Duration!): Topology
}