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

[skywalking-query-protocol] branch master updated: Add query trace tag autocomplete (#83)

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

qiuxiafan 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 354b2f5  Add query trace tag autocomplete (#83)
354b2f5 is described below

commit 354b2f54322ec4395d1f3ff869f56e7aeba5e447
Author: Wan Kai <wa...@foxmail.com>
AuthorDate: Wed Apr 27 11:26:56 2022 +0800

    Add query trace tag autocomplete (#83)
---
 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!]
 }