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 2022/04/28 11:28:42 UTC

[skywalking-query-protocol] branch master updated: Add duration to filter the trace tag autocomplete result. (#84)

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

wusheng 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 f40f391  Add duration to filter the trace tag autocomplete result. (#84)
f40f391 is described below

commit f40f3914b39efb6590bc51a7014dc5080361d9ba
Author: Wan Kai <wa...@foxmail.com>
AuthorDate: Thu Apr 28 19:28:37 2022 +0800

    Add duration to filter the trace tag autocomplete result. (#84)
---
 trace.graphqls | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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