kb-cloud-client-typescript 2.3.0-alpha.116 → 2.3.0-alpha.117
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/adminapi/apis/cluster-log-api.d.ts +211 -19
- package/dist/adminapi/apis/cluster-log-api.d.ts.map +1 -1
- package/dist/adminapi/apis/cluster-log-api.js +142 -22
- package/dist/adminapi/apis/cluster-log-api.js.map +1 -1
- package/dist/adminapi/apis/shared-api.d.ts +211 -19
- package/dist/adminapi/apis/shared-api.d.ts.map +1 -1
- package/dist/adminapi/apis/shared-api.js +142 -22
- package/dist/adminapi/apis/shared-api.js.map +1 -1
- package/dist/openapi/apis/cluster-log-api.d.ts +214 -22
- package/dist/openapi/apis/cluster-log-api.d.ts.map +1 -1
- package/dist/openapi/apis/cluster-log-api.js +144 -24
- package/dist/openapi/apis/cluster-log-api.js.map +1 -1
- package/dist/openapi/apis/shared-api.d.ts +214 -22
- package/dist/openapi/apis/shared-api.d.ts.map +1 -1
- package/dist/openapi/apis/shared-api.js +144 -24
- package/dist/openapi/apis/shared-api.js.map +1 -1
- package/package.json +1 -1
- package/src/adminapi/apis/cluster-log-api.ts +337 -25
- package/src/adminapi/apis/shared-api.ts +337 -25
- package/src/adminapi.yaml +131 -3
- package/src/openapi/apis/cluster-log-api.ts +340 -28
- package/src/openapi/apis/shared-api.ts +340 -28
- package/src/openapi.yaml +132 -4
package/src/adminapi.yaml
CHANGED
|
@@ -6999,6 +6999,70 @@ paths:
|
|
|
6999
6999
|
name: query
|
|
7000
7000
|
schema:
|
|
7001
7001
|
type: string
|
|
7002
|
+
- in: query
|
|
7003
|
+
name: minExecutionTime
|
|
7004
|
+
description: Minimum slow log execution time in seconds. Decimal values are supported, for example 0.5.
|
|
7005
|
+
schema:
|
|
7006
|
+
type: number
|
|
7007
|
+
format: double
|
|
7008
|
+
- in: query
|
|
7009
|
+
name: maxExecutionTime
|
|
7010
|
+
description: Maximum slow log execution time in seconds. Decimal values are supported, for example 0.5.
|
|
7011
|
+
schema:
|
|
7012
|
+
type: number
|
|
7013
|
+
format: double
|
|
7014
|
+
- in: query
|
|
7015
|
+
name: minLockTime
|
|
7016
|
+
description: Minimum slow log lock time in seconds. Decimal values are supported, for example 0.001.
|
|
7017
|
+
schema:
|
|
7018
|
+
type: number
|
|
7019
|
+
format: double
|
|
7020
|
+
- in: query
|
|
7021
|
+
name: maxLockTime
|
|
7022
|
+
description: Maximum slow log lock time in seconds. Decimal values are supported, for example 0.001.
|
|
7023
|
+
schema:
|
|
7024
|
+
type: number
|
|
7025
|
+
format: double
|
|
7026
|
+
- in: query
|
|
7027
|
+
name: minRowsExamined
|
|
7028
|
+
schema:
|
|
7029
|
+
type: integer
|
|
7030
|
+
format: int64
|
|
7031
|
+
- in: query
|
|
7032
|
+
name: maxRowsExamined
|
|
7033
|
+
schema:
|
|
7034
|
+
type: integer
|
|
7035
|
+
format: int64
|
|
7036
|
+
- in: query
|
|
7037
|
+
name: minRowsSent
|
|
7038
|
+
schema:
|
|
7039
|
+
type: integer
|
|
7040
|
+
format: int64
|
|
7041
|
+
- in: query
|
|
7042
|
+
name: maxRowsSent
|
|
7043
|
+
schema:
|
|
7044
|
+
type: integer
|
|
7045
|
+
format: int64
|
|
7046
|
+
- in: query
|
|
7047
|
+
name: dbName
|
|
7048
|
+
description: Filter slow logs whose database name contains this value.
|
|
7049
|
+
schema:
|
|
7050
|
+
type: string
|
|
7051
|
+
- in: query
|
|
7052
|
+
name: userName
|
|
7053
|
+
description: Filter slow logs whose user name contains this value.
|
|
7054
|
+
schema:
|
|
7055
|
+
type: string
|
|
7056
|
+
- in: query
|
|
7057
|
+
name: clientIp
|
|
7058
|
+
description: Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
7059
|
+
schema:
|
|
7060
|
+
type: string
|
|
7061
|
+
- in: query
|
|
7062
|
+
name: appName
|
|
7063
|
+
description: Filter slow logs whose application name contains this value.
|
|
7064
|
+
schema:
|
|
7065
|
+
type: string
|
|
7002
7066
|
responses:
|
|
7003
7067
|
'200':
|
|
7004
7068
|
content:
|
|
@@ -7062,6 +7126,70 @@ paths:
|
|
|
7062
7126
|
name: query
|
|
7063
7127
|
schema:
|
|
7064
7128
|
type: string
|
|
7129
|
+
- in: query
|
|
7130
|
+
name: minExecutionTime
|
|
7131
|
+
description: Minimum slow log execution time in seconds. Decimal values are supported, for example 0.5.
|
|
7132
|
+
schema:
|
|
7133
|
+
type: number
|
|
7134
|
+
format: double
|
|
7135
|
+
- in: query
|
|
7136
|
+
name: maxExecutionTime
|
|
7137
|
+
description: Maximum slow log execution time in seconds. Decimal values are supported, for example 0.5.
|
|
7138
|
+
schema:
|
|
7139
|
+
type: number
|
|
7140
|
+
format: double
|
|
7141
|
+
- in: query
|
|
7142
|
+
name: minLockTime
|
|
7143
|
+
description: Minimum slow log lock time in seconds. Decimal values are supported, for example 0.001.
|
|
7144
|
+
schema:
|
|
7145
|
+
type: number
|
|
7146
|
+
format: double
|
|
7147
|
+
- in: query
|
|
7148
|
+
name: maxLockTime
|
|
7149
|
+
description: Maximum slow log lock time in seconds. Decimal values are supported, for example 0.001.
|
|
7150
|
+
schema:
|
|
7151
|
+
type: number
|
|
7152
|
+
format: double
|
|
7153
|
+
- in: query
|
|
7154
|
+
name: minRowsExamined
|
|
7155
|
+
schema:
|
|
7156
|
+
type: integer
|
|
7157
|
+
format: int64
|
|
7158
|
+
- in: query
|
|
7159
|
+
name: maxRowsExamined
|
|
7160
|
+
schema:
|
|
7161
|
+
type: integer
|
|
7162
|
+
format: int64
|
|
7163
|
+
- in: query
|
|
7164
|
+
name: minRowsSent
|
|
7165
|
+
schema:
|
|
7166
|
+
type: integer
|
|
7167
|
+
format: int64
|
|
7168
|
+
- in: query
|
|
7169
|
+
name: maxRowsSent
|
|
7170
|
+
schema:
|
|
7171
|
+
type: integer
|
|
7172
|
+
format: int64
|
|
7173
|
+
- in: query
|
|
7174
|
+
name: dbName
|
|
7175
|
+
description: Filter slow logs whose database name contains this value.
|
|
7176
|
+
schema:
|
|
7177
|
+
type: string
|
|
7178
|
+
- in: query
|
|
7179
|
+
name: userName
|
|
7180
|
+
description: Filter slow logs whose user name contains this value.
|
|
7181
|
+
schema:
|
|
7182
|
+
type: string
|
|
7183
|
+
- in: query
|
|
7184
|
+
name: clientIp
|
|
7185
|
+
description: Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
7186
|
+
schema:
|
|
7187
|
+
type: string
|
|
7188
|
+
- in: query
|
|
7189
|
+
name: appName
|
|
7190
|
+
description: Filter slow logs whose application name contains this value.
|
|
7191
|
+
schema:
|
|
7192
|
+
type: string
|
|
7065
7193
|
responses:
|
|
7066
7194
|
'200':
|
|
7067
7195
|
content:
|
|
@@ -7221,7 +7349,7 @@ paths:
|
|
|
7221
7349
|
- shared
|
|
7222
7350
|
/admin/v1/organizations/{orgName}/clusters/{clusterName}/logs/slow/aggregate:
|
|
7223
7351
|
get:
|
|
7224
|
-
description: Aggregate slow logs of a cluster (Victoria Logs backend only)
|
|
7352
|
+
description: Aggregate slow logs of a cluster over the full requested time range (Victoria Logs backend only). The result is not limited by the slow log list page size.
|
|
7225
7353
|
summary: Aggregate cluster slow logs
|
|
7226
7354
|
operationId: aggregateSlowLogs
|
|
7227
7355
|
parameters:
|
|
@@ -7366,7 +7494,7 @@ paths:
|
|
|
7366
7494
|
- shared
|
|
7367
7495
|
/admin/v1/organizations/{orgName}/clusters/{clusterName}/logs/slow/stats:
|
|
7368
7496
|
get:
|
|
7369
|
-
description: Get statistics summary for slow logs of a cluster
|
|
7497
|
+
description: Get statistics summary for slow logs of a cluster. When the same slow log filters are supplied, totalSlowLogs can be used as the filtered list preview count.
|
|
7370
7498
|
summary: Get cluster slow log statistics
|
|
7371
7499
|
operationId: getSlowLogStats
|
|
7372
7500
|
parameters:
|
|
@@ -7622,7 +7750,7 @@ paths:
|
|
|
7622
7750
|
- shared
|
|
7623
7751
|
/admin/v1/organizations/{orgName}/clusters/{clusterName}/logs/hits:
|
|
7624
7752
|
get:
|
|
7625
|
-
description: Query log hits histogram for time-bucketed log counts (VictoriaLogs only)
|
|
7753
|
+
description: Query log hits histogram for time-bucketed log counts (VictoriaLogs only). When logType=slow, buckets also include avgExecutionTime in seconds; templateId can be supplied for slow template trends.
|
|
7626
7754
|
summary: Query log hits histogram
|
|
7627
7755
|
operationId: queryLogHits
|
|
7628
7756
|
parameters:
|