You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2021/05/26 04:46:43 UTC

[skywalking-query-protocol] 01/01: Add more topology template types

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

kezhenxu94 pushed a commit to branch topo/template
in repository https://gitbox.apache.org/repos/asf/skywalking-query-protocol.git

commit a512bf8b4e9e7b78500a1915ea8cdf1a3eb03c62
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Wed May 26 12:46:24 2021 +0800

    Add more topology template types
---
 ui-configuration.graphqls | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/ui-configuration.graphqls b/ui-configuration.graphqls
index 12b9788..4ed63fa 100644
--- a/ui-configuration.graphqls
+++ b/ui-configuration.graphqls
@@ -21,7 +21,10 @@ enum TemplateType {
     TOPOLOGY_INSTANCE,
     TOPOLOGY_ENDPOINT,
     TOPOLOGY_SERVICE_RELATION,
-    TOPOLOGY_SERVICE_INSTANCE_RELATION
+    TOPOLOGY_SERVICE_INSTANCE_RELATION,
+    TOPOLOGY_ENDPOINT_DEPENDENCY,
+    TOPOLOGY_SERVICE_DEPENDENCY,
+    TOPOLOGY_SERVICE_INSTANCE_DEPENDENCY
 }
 
 type DashboardConfiguration {
@@ -67,4 +70,4 @@ extend type Mutation {
     addTemplate(setting: DashboardSetting!): TemplateChangeStatus!
     changeTemplate(setting: DashboardSetting!): TemplateChangeStatus!
     disableTemplate(name: String!): TemplateChangeStatus!
-}
\ No newline at end of file
+}