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/28 11:26:15 UTC

[skywalking-query-protocol] 01/01: Add duration to filter the trace tag autocomplete result.

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

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

commit cd95c8a8c4fc21cbd39b71b72579bd7252232725
Author: wankai123 <wa...@foxmail.com>
AuthorDate: Thu Apr 28 19:26:00 2022 +0800

    Add duration to filter the trace tag autocomplete result.
---
 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!]
 }