You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wa...@apache.org on 2022/04/27 01:18:30 UTC

[skywalking-query-protocol] 01/01: Add query trace tag autocomplete

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

wankai pushed a commit to branch trace-tag
in repository https://gitbox.apache.org/repos/asf/skywalking-query-protocol.git

commit 882039454bb7725873d264a26be6e516148eef3d
Author: wankai123 <wa...@foxmail.com>
AuthorDate: Wed Apr 27 09:18:13 2022 +0800

    Add query trace tag autocomplete
---
 trace.graphqls | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/trace.graphqls b/trace.graphqls
index c33bd0f..5f30603 100644
--- a/trace.graphqls
+++ b/trace.graphqls
@@ -119,4 +119,6 @@ type LogEntity {
 extend type Query {
     queryBasicTraces(condition: TraceQueryCondition): TraceBrief
     queryTrace(traceId: ID!): Trace
+    queryTraceTagAutocompleteKeys:[String!]
+    queryTraceTagAutocompleteValues(tagKey: String!):[String!]
 }