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 6ed9a1b  support log query trace (#137)
6ed9a1b is described below

commit 6ed9a1bb96c1c753d3211e55995117c9617e4339
Author: Wan Kai <[email protected]>
AuthorDate: Tue Jul 9 11:48:27 2024 +0800

    support log query trace (#137)
---
 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