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 f38def1  Support span tag query.
f38def1 is described below

commit f38def1d502327856c1cae7ceb233f3c0c8c8e2a
Author: Wu Sheng <wu.sh...@foxmail.com>
AuthorDate: Fri Aug 7 16:54:47 2020 +0800

    Support span tag query.
---
 trace.graphqls | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/trace.graphqls b/trace.graphqls
index d5e169f..7dc975e 100644
--- a/trace.graphqls
+++ b/trace.graphqls
@@ -46,9 +46,16 @@ input TraceQueryCondition {
     maxTraceDuration: Int
     traceState: TraceState!
     queryOrder: QueryOrder!
+    # Map to the tags included in the traces
+    tags: [SpanTag!]
     paging: Pagination!
 }
 
+input SpanTag {
+    key: String!
+    value: String
+}
+
 enum TraceState {
     ALL
     SUCCESS

Reply via email to