We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d0a37c commit d4f774fCopy full SHA for d4f774f
2 files changed
CHANGES.md
@@ -6,6 +6,11 @@ Release Notes.
6
------------------
7
8
### Features
9
+
10
+### Bug Fixes
11
12
+* Fix the record list query does not support new OAP versions (with major version number > 9).
13
14
## What's Changed
15
16
* Add the sub-command `menu get` for get the ui menu items by @mrproliu in https://github.com/apache/skywalking-cli/pull/187
internal/commands/metrics/aggregation/sampled-record.go
@@ -76,7 +76,7 @@ $ swctl metrics sampled-record --name top_n_database_statement 5
76
}
77
78
// since 9.3.0, use new record query API
79
- if major >= 9 && minor >= 3 {
+ if (major == 9 && minor >= 3) || major > 9 {
80
condition, duration, err1 := buildReadRecordsCondition(ctx)
81
if err1 != nil {
82
return err1
0 commit comments