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:14 UTC

[skywalking-query-protocol] branch tag-auto-add-duration created (now cd95c8a)

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

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


      at cd95c8a  Add duration to filter the trace tag autocomplete result.

This branch includes the following new commits:

     new cd95c8a  Add duration to filter the trace tag autocomplete result.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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

Posted by wa...@apache.org.
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!]
 }