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

wankai pushed a commit to branch log-trace
in repository https://gitbox.apache.org/repos/asf/skywalking-query-protocol.git

commit 0f84fe6806f377efba80feeb4939f7434cde80ca
Author: wankai123 <wankai...@foxmail.com>
AuthorDate: Tue Jul 9 11:28:29 2024 +0800

    support log query trace
---
 log.graphqls | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/log.graphqls b/log.graphqls
index 855f6db..b16474a 100644
--- a/log.graphqls
+++ b/log.graphqls
@@ -18,8 +18,9 @@
 type Logs {
     # When this field is not empty, frontend should display it in UI
     errorReason: String
-
     logs: [Log!]!
+    #For OAP internal query debugging
+    debuggingTrace: DebuggingTrace
 }
 
 # Log info
@@ -102,7 +103,7 @@ type LogTestMetrics {
 extend type Query {
     # Return true if the current storage implementation supports fuzzy query 
for logs.
     supportQueryLogsByKeywords: Boolean!
-    queryLogs(condition: LogQueryCondition): Logs
+    queryLogs(condition: LogQueryCondition, debug: Boolean): Logs
 
     # Test the logs and get the results of the LAL output.
     test(requests: LogTestRequest!): LogTestResponse!

Reply via email to