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

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

commit e9d4f81bb2bde6eb92bf7595c1257cc8d60470f5
Author: wankai123 <wankai...@foxmail.com>
AuthorDate: Wed May 28 09:51:34 2025 +0800

    update RecordsTTL
---
 metadata-v2.graphqls | 20 ++++++++++++++------
 1 file changed, 14 insertions(+), 6 deletions(-)

diff --git a/metadata-v2.graphqls b/metadata-v2.graphqls
index e76d453..2723515 100644
--- a/metadata-v2.graphqls
+++ b/metadata-v2.graphqls
@@ -109,18 +109,26 @@ type TimeInfo {
 }
 
 type RecordsTTL {
-    value: Int!
-    superDataset: Int!
-    # -1 means no cold stage.
-    coldValue: Int!
-    coldSuperDataset: Int!
+    # Cover hot and warm data for BanyanDB.
+    normal: Int!
+    trace: Int!
+    zipkinTrace: Int!
+    log: Int!
+    browserErrorLog: Int!
+    # Cold data, '-1' represents no cold stage data.
+    coldNormal: Int!
+    coldTrace: Int!
+    coldZipkinTrace: Int!
+    coldLog: Int!
+    coldBrowserErrorLog: Int!
 }
 
 type MetricsTTL {
+    # Cover hot and warm data for BanyanDB.
     minute: Int!
     hour: Int!
     day: Int!
-    # -1 means no cold stage.
+    # Cold data, '-1' represents no cold stage data.
     coldMinute: Int!
     coldHour: Int!
     coldDay: Int!

Reply via email to