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 2018/10/16 09:04:21 UTC

[incubator-skywalking-query-protocol] branch wu-sheng-patch-1 created (now 7ccf9ac)

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/incubator-skywalking-query-protocol.git.


      at 7ccf9ac  Update metadata.graphqls

This branch includes the following new commits:

     new 7ccf9ac  Update metadata.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.



[incubator-skywalking-query-protocol] 01/01: Update metadata.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/incubator-skywalking-query-protocol.git

commit 7ccf9ac195ebd22d9008841db9c633663d5eadce
Author: 吴晟 Wu Sheng <wu...@foxmail.com>
AuthorDate: Tue Oct 16 17:04:18 2018 +0800

    Update metadata.graphqls
---
 metadata.graphqls | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/metadata.graphqls b/metadata.graphqls
index 94b0d1c..7ff5062 100644
--- a/metadata.graphqls
+++ b/metadata.graphqls
@@ -45,6 +45,13 @@ type Endpoint {
     name: String!
 }
 
+type EndpointInfo {
+    id: ID!
+    name: String!
+    serviceId: ID!
+    serviceName: String!
+}
+
 extend type Query {
     getGlobalBrief(duration: Duration!): ClusterBrief
 
@@ -60,4 +67,5 @@ extend type Query {
     # Consider there are huge numbers of endpoint,
     # must use endpoint owner's service id, keyword and limit filter to do query.
     searchEndpoint(keyword: String!, serviceId: ID!, limit: Int!): [Endpoint!]!
+    getEndpointInfo(endpointId: ID!): EndpointInfo
 }