kb-cloud-client-typescript 2.3.0-alpha.109 → 2.3.0-alpha.111
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/api.d.ts +1 -0
- package/dist/adminapi/api.d.ts.map +1 -1
- package/dist/adminapi/api.js +1 -0
- package/dist/adminapi/api.js.map +1 -1
- package/dist/adminapi/apis/cluster-log-api.d.ts +84 -324
- package/dist/adminapi/apis/cluster-log-api.d.ts.map +1 -1
- package/dist/adminapi/apis/cluster-log-api.js +78 -228
- package/dist/adminapi/apis/cluster-log-api.js.map +1 -1
- package/dist/adminapi/apis/database-parameters-api.d.ts +11 -11
- package/dist/adminapi/apis/database-parameters-api.d.ts.map +1 -1
- package/dist/adminapi/apis/database-parameters-api.js +10 -6
- package/dist/adminapi/apis/database-parameters-api.js.map +1 -1
- package/dist/adminapi/apis/diagnostics-api.d.ts +120 -0
- package/dist/adminapi/apis/diagnostics-api.d.ts.map +1 -0
- package/dist/adminapi/apis/diagnostics-api.js +143 -0
- package/dist/adminapi/apis/diagnostics-api.js.map +1 -0
- package/dist/adminapi/apis/shared-api.d.ts +84 -324
- package/dist/adminapi/apis/shared-api.d.ts.map +1 -1
- package/dist/adminapi/apis/shared-api.js +78 -228
- package/dist/adminapi/apis/shared-api.js.map +1 -1
- package/dist/adminapi/models/index.d.ts +1 -0
- package/dist/adminapi/models/index.d.ts.map +1 -1
- package/dist/adminapi/models/index.js +1 -0
- package/dist/adminapi/models/index.js.map +1 -1
- package/dist/adminapi/models/postgresql-session.d.ts +121 -0
- package/dist/adminapi/models/postgresql-session.d.ts.map +1 -0
- package/dist/adminapi/models/postgresql-session.js +16 -0
- package/dist/adminapi/models/postgresql-session.js.map +1 -0
- package/dist/openapi/api.d.ts +1 -0
- package/dist/openapi/api.d.ts.map +1 -1
- package/dist/openapi/api.js +1 -0
- package/dist/openapi/api.js.map +1 -1
- package/dist/openapi/apis/cluster-log-api.d.ts +98 -378
- package/dist/openapi/apis/cluster-log-api.d.ts.map +1 -1
- package/dist/openapi/apis/cluster-log-api.js +91 -266
- package/dist/openapi/apis/cluster-log-api.js.map +1 -1
- package/dist/openapi/apis/diagnostics-api.d.ts +120 -0
- package/dist/openapi/apis/diagnostics-api.d.ts.map +1 -0
- package/dist/openapi/apis/diagnostics-api.js +143 -0
- package/dist/openapi/apis/diagnostics-api.js.map +1 -0
- package/dist/openapi/apis/shared-api.d.ts +98 -378
- package/dist/openapi/apis/shared-api.d.ts.map +1 -1
- package/dist/openapi/apis/shared-api.js +91 -266
- package/dist/openapi/apis/shared-api.js.map +1 -1
- package/dist/openapi/models/index.d.ts +1 -0
- package/dist/openapi/models/index.d.ts.map +1 -1
- package/dist/openapi/models/index.js +1 -0
- package/dist/openapi/models/index.js.map +1 -1
- package/dist/openapi/models/postgresql-session.d.ts +121 -0
- package/dist/openapi/models/postgresql-session.d.ts.map +1 -0
- package/dist/openapi/models/postgresql-session.js +16 -0
- package/dist/openapi/models/postgresql-session.js.map +1 -0
- package/package.json +1 -6
- package/src/adminapi/.openapi-generator/FILES +2 -0
- package/src/adminapi/api.ts +1 -0
- package/src/adminapi/apis/cluster-log-api.ts +102 -492
- package/src/adminapi/apis/database-parameters-api.ts +15 -11
- package/src/adminapi/apis/diagnostics-api.ts +196 -0
- package/src/adminapi/apis/shared-api.ts +102 -492
- package/src/adminapi/models/index.ts +1 -0
- package/src/adminapi/models/postgresql-session.ts +126 -0
- package/src/adminapi.yaml +134 -120
- package/src/openapi/.openapi-generator/FILES +2 -0
- package/src/openapi/api.ts +1 -0
- package/src/openapi/apis/cluster-log-api.ts +119 -574
- package/src/openapi/apis/diagnostics-api.ts +196 -0
- package/src/openapi/apis/shared-api.ts +119 -574
- package/src/openapi/models/index.ts +1 -0
- package/src/openapi/models/postgresql-session.ts +126 -0
- package/src/openapi.yaml +131 -140
|
@@ -67,21 +67,16 @@ export declare const ClusterLogApiAxiosParamCreator: (configuration?: Configurat
|
|
|
67
67
|
* @param {number} [maxRowsExamined]
|
|
68
68
|
* @param {number} [minRowsSent]
|
|
69
69
|
* @param {number} [maxRowsSent]
|
|
70
|
-
* @param {string} [dbName]
|
|
71
|
-
* @param {string} [
|
|
72
|
-
* @param {string} [
|
|
73
|
-
* @param {string} [
|
|
74
|
-
* @param {string} [clientIp]
|
|
75
|
-
* @param {string} [clientIpContains]
|
|
76
|
-
* @param {string} [clientIpCIDR]
|
|
77
|
-
* @param {string} [appName]
|
|
78
|
-
* @param {string} [appNameContains]
|
|
70
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
71
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
72
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
73
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
79
74
|
* @param {string} [templateId]
|
|
80
75
|
* @param {boolean} [unclassifiedOnly]
|
|
81
76
|
* @param {*} [options] Override http request option.
|
|
82
77
|
* @throws {RequiredError}
|
|
83
78
|
*/
|
|
84
|
-
aggregateSlowLogs: (orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, groupBy?: string, topN?: number, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string,
|
|
79
|
+
aggregateSlowLogs: (orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, groupBy?: string, topN?: number, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, userName?: string, clientIp?: string, appName?: string, templateId?: string, unclassifiedOnly?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
85
80
|
/**
|
|
86
81
|
* Explain a concrete SQL from a slow log using the cluster default datasource.
|
|
87
82
|
* @summary Explain cluster slow log SQL
|
|
@@ -128,22 +123,17 @@ export declare const ClusterLogApiAxiosParamCreator: (configuration?: Configurat
|
|
|
128
123
|
* @param {number} [maxRowsExamined]
|
|
129
124
|
* @param {number} [minRowsSent]
|
|
130
125
|
* @param {number} [maxRowsSent]
|
|
131
|
-
* @param {string} [dbName]
|
|
132
|
-
* @param {string} [
|
|
133
|
-
* @param {string} [
|
|
134
|
-
* @param {string} [
|
|
135
|
-
* @param {string} [clientIp]
|
|
136
|
-
* @param {string} [clientIpContains]
|
|
137
|
-
* @param {string} [clientIpCIDR]
|
|
138
|
-
* @param {string} [appName]
|
|
139
|
-
* @param {string} [appNameContains]
|
|
126
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
127
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
128
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
129
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
140
130
|
* @param {string} [templateId]
|
|
141
131
|
* @param {boolean} [unclassifiedOnly]
|
|
142
132
|
* @param {number} [maxLines] Maximum number of lines to export. Defaults to 100000 if omitted
|
|
143
133
|
* @param {*} [options] Override http request option.
|
|
144
134
|
* @throws {RequiredError}
|
|
145
135
|
*/
|
|
146
|
-
exportClusterLogs: (orgName: string, clusterName: string, logType: string, startTime?: number, endTime?: number, format?: string, query?: string, filename?: string, componentName?: string, instanceName?: string, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string,
|
|
136
|
+
exportClusterLogs: (orgName: string, clusterName: string, logType: string, startTime?: number, endTime?: number, format?: string, query?: string, filename?: string, componentName?: string, instanceName?: string, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, userName?: string, clientIp?: string, appName?: string, templateId?: string, unclassifiedOnly?: boolean, maxLines?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
147
137
|
/**
|
|
148
138
|
* Get statistics summary for slow logs of a cluster
|
|
149
139
|
* @summary Get cluster slow log statistics
|
|
@@ -162,21 +152,16 @@ export declare const ClusterLogApiAxiosParamCreator: (configuration?: Configurat
|
|
|
162
152
|
* @param {number} [maxRowsExamined]
|
|
163
153
|
* @param {number} [minRowsSent]
|
|
164
154
|
* @param {number} [maxRowsSent]
|
|
165
|
-
* @param {string} [dbName]
|
|
166
|
-
* @param {string} [
|
|
167
|
-
* @param {string} [
|
|
168
|
-
* @param {string} [
|
|
169
|
-
* @param {string} [clientIp]
|
|
170
|
-
* @param {string} [clientIpContains]
|
|
171
|
-
* @param {string} [clientIpCIDR]
|
|
172
|
-
* @param {string} [appName]
|
|
173
|
-
* @param {string} [appNameContains]
|
|
155
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
156
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
157
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
158
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
174
159
|
* @param {string} [templateId]
|
|
175
160
|
* @param {boolean} [unclassifiedOnly]
|
|
176
161
|
* @param {*} [options] Override http request option.
|
|
177
162
|
* @throws {RequiredError}
|
|
178
163
|
*/
|
|
179
|
-
getSlowLogStats: (orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string,
|
|
164
|
+
getSlowLogStats: (orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, userName?: string, clientIp?: string, appName?: string, templateId?: string, unclassifiedOnly?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
180
165
|
/**
|
|
181
166
|
* Get a slow log template of a cluster (VictoriaLogs backend only)
|
|
182
167
|
* @summary Get cluster slow log template
|
|
@@ -244,21 +229,16 @@ export declare const ClusterLogApiAxiosParamCreator: (configuration?: Configurat
|
|
|
244
229
|
* @param {number} [maxRowsExamined]
|
|
245
230
|
* @param {number} [minRowsSent]
|
|
246
231
|
* @param {number} [maxRowsSent]
|
|
247
|
-
* @param {string} [dbName]
|
|
248
|
-
* @param {string} [
|
|
249
|
-
* @param {string} [
|
|
250
|
-
* @param {string} [
|
|
251
|
-
* @param {string} [clientIp]
|
|
252
|
-
* @param {string} [clientIpContains]
|
|
253
|
-
* @param {string} [clientIpCIDR]
|
|
254
|
-
* @param {string} [appName]
|
|
255
|
-
* @param {string} [appNameContains]
|
|
232
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
233
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
234
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
235
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
256
236
|
* @param {string} [templateId]
|
|
257
237
|
* @param {boolean} [unclassifiedOnly]
|
|
258
238
|
* @param {*} [options] Override http request option.
|
|
259
239
|
* @throws {RequiredError}
|
|
260
240
|
*/
|
|
261
|
-
queryLogHits: (orgName: string, clusterName: string, startTime: string, endTime: string, step: string, logType: string, componentName?: string, instanceName?: string, query?: string, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string,
|
|
241
|
+
queryLogHits: (orgName: string, clusterName: string, startTime: string, endTime: string, step: string, logType: string, componentName?: string, instanceName?: string, query?: string, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, userName?: string, clientIp?: string, appName?: string, templateId?: string, unclassifiedOnly?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
262
242
|
/**
|
|
263
243
|
* Query pod logs of a cluster
|
|
264
244
|
* @summary Query cluster pod logs
|
|
@@ -313,20 +293,15 @@ export declare const ClusterLogApiAxiosParamCreator: (configuration?: Configurat
|
|
|
313
293
|
* @param {number} [maxRowsExamined]
|
|
314
294
|
* @param {number} [minRowsSent]
|
|
315
295
|
* @param {number} [maxRowsSent]
|
|
316
|
-
* @param {string} [dbName]
|
|
317
|
-
* @param {string} [
|
|
318
|
-
* @param {string} [
|
|
319
|
-
* @param {string} [
|
|
320
|
-
* @param {string} [clientIp]
|
|
321
|
-
* @param {string} [clientIpContains]
|
|
322
|
-
* @param {string} [clientIpCIDR]
|
|
323
|
-
* @param {string} [appName]
|
|
324
|
-
* @param {string} [appNameContains]
|
|
296
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
297
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
298
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
299
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
325
300
|
* @param {boolean} [unclassifiedOnly]
|
|
326
301
|
* @param {*} [options] Override http request option.
|
|
327
302
|
* @throws {RequiredError}
|
|
328
303
|
*/
|
|
329
|
-
querySlowLogTemplateSamples: (orgName: string, clusterName: string, templateId: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string,
|
|
304
|
+
querySlowLogTemplateSamples: (orgName: string, clusterName: string, templateId: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, userName?: string, clientIp?: string, appName?: string, unclassifiedOnly?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
330
305
|
/**
|
|
331
306
|
* Query slow log templates of a cluster (VictoriaLogs backend only)
|
|
332
307
|
* @summary Query cluster slow log templates
|
|
@@ -348,19 +323,14 @@ export declare const ClusterLogApiAxiosParamCreator: (configuration?: Configurat
|
|
|
348
323
|
* @param {number} [maxRowsExamined]
|
|
349
324
|
* @param {number} [minRowsSent]
|
|
350
325
|
* @param {number} [maxRowsSent]
|
|
351
|
-
* @param {string} [dbName]
|
|
352
|
-
* @param {string} [
|
|
353
|
-
* @param {string} [
|
|
354
|
-
* @param {string} [
|
|
355
|
-
* @param {string} [clientIp]
|
|
356
|
-
* @param {string} [clientIpContains]
|
|
357
|
-
* @param {string} [clientIpCIDR]
|
|
358
|
-
* @param {string} [appName]
|
|
359
|
-
* @param {string} [appNameContains]
|
|
326
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
327
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
328
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
329
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
360
330
|
* @param {*} [options] Override http request option.
|
|
361
331
|
* @throws {RequiredError}
|
|
362
332
|
*/
|
|
363
|
-
querySlowLogTemplates: (orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, topN?: number, sortBy?: string, sortType?: SortType, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string,
|
|
333
|
+
querySlowLogTemplates: (orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, topN?: number, sortBy?: string, sortType?: SortType, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, userName?: string, clientIp?: string, appName?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
364
334
|
/**
|
|
365
335
|
* Query slow logs of a cluster
|
|
366
336
|
* @summary Query cluster slow logs
|
|
@@ -381,21 +351,16 @@ export declare const ClusterLogApiAxiosParamCreator: (configuration?: Configurat
|
|
|
381
351
|
* @param {number} [maxRowsExamined]
|
|
382
352
|
* @param {number} [minRowsSent]
|
|
383
353
|
* @param {number} [maxRowsSent]
|
|
384
|
-
* @param {string} [dbName]
|
|
385
|
-
* @param {string} [
|
|
386
|
-
* @param {string} [
|
|
387
|
-
* @param {string} [
|
|
388
|
-
* @param {string} [clientIp]
|
|
389
|
-
* @param {string} [clientIpContains]
|
|
390
|
-
* @param {string} [clientIpCIDR]
|
|
391
|
-
* @param {string} [appName]
|
|
392
|
-
* @param {string} [appNameContains]
|
|
354
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
355
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
356
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
357
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
393
358
|
* @param {string} [templateId]
|
|
394
359
|
* @param {boolean} [unclassifiedOnly]
|
|
395
360
|
* @param {*} [options] Override http request option.
|
|
396
361
|
* @throws {RequiredError}
|
|
397
362
|
*/
|
|
398
|
-
querySlowLogs: (orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string,
|
|
363
|
+
querySlowLogs: (orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, userName?: string, clientIp?: string, appName?: string, templateId?: string, unclassifiedOnly?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
399
364
|
};
|
|
400
365
|
/**
|
|
401
366
|
* ClusterLogApi - functional programming interface
|
|
@@ -442,21 +407,16 @@ export declare const ClusterLogApiFp: (configuration?: Configuration) => {
|
|
|
442
407
|
* @param {number} [maxRowsExamined]
|
|
443
408
|
* @param {number} [minRowsSent]
|
|
444
409
|
* @param {number} [maxRowsSent]
|
|
445
|
-
* @param {string} [dbName]
|
|
446
|
-
* @param {string} [
|
|
447
|
-
* @param {string} [
|
|
448
|
-
* @param {string} [
|
|
449
|
-
* @param {string} [clientIp]
|
|
450
|
-
* @param {string} [clientIpContains]
|
|
451
|
-
* @param {string} [clientIpCIDR]
|
|
452
|
-
* @param {string} [appName]
|
|
453
|
-
* @param {string} [appNameContains]
|
|
410
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
411
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
412
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
413
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
454
414
|
* @param {string} [templateId]
|
|
455
415
|
* @param {boolean} [unclassifiedOnly]
|
|
456
416
|
* @param {*} [options] Override http request option.
|
|
457
417
|
* @throws {RequiredError}
|
|
458
418
|
*/
|
|
459
|
-
aggregateSlowLogs(orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, groupBy?: string, topN?: number, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string,
|
|
419
|
+
aggregateSlowLogs(orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, groupBy?: string, topN?: number, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, userName?: string, clientIp?: string, appName?: string, templateId?: string, unclassifiedOnly?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterExecutionLogAggregateResponse>>;
|
|
460
420
|
/**
|
|
461
421
|
* Explain a concrete SQL from a slow log using the cluster default datasource.
|
|
462
422
|
* @summary Explain cluster slow log SQL
|
|
@@ -503,22 +463,17 @@ export declare const ClusterLogApiFp: (configuration?: Configuration) => {
|
|
|
503
463
|
* @param {number} [maxRowsExamined]
|
|
504
464
|
* @param {number} [minRowsSent]
|
|
505
465
|
* @param {number} [maxRowsSent]
|
|
506
|
-
* @param {string} [dbName]
|
|
507
|
-
* @param {string} [
|
|
508
|
-
* @param {string} [
|
|
509
|
-
* @param {string} [
|
|
510
|
-
* @param {string} [clientIp]
|
|
511
|
-
* @param {string} [clientIpContains]
|
|
512
|
-
* @param {string} [clientIpCIDR]
|
|
513
|
-
* @param {string} [appName]
|
|
514
|
-
* @param {string} [appNameContains]
|
|
466
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
467
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
468
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
469
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
515
470
|
* @param {string} [templateId]
|
|
516
471
|
* @param {boolean} [unclassifiedOnly]
|
|
517
472
|
* @param {number} [maxLines] Maximum number of lines to export. Defaults to 100000 if omitted
|
|
518
473
|
* @param {*} [options] Override http request option.
|
|
519
474
|
* @throws {RequiredError}
|
|
520
475
|
*/
|
|
521
|
-
exportClusterLogs(orgName: string, clusterName: string, logType: string, startTime?: number, endTime?: number, format?: string, query?: string, filename?: string, componentName?: string, instanceName?: string, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string,
|
|
476
|
+
exportClusterLogs(orgName: string, clusterName: string, logType: string, startTime?: number, endTime?: number, format?: string, query?: string, filename?: string, componentName?: string, instanceName?: string, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, userName?: string, clientIp?: string, appName?: string, templateId?: string, unclassifiedOnly?: boolean, maxLines?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
522
477
|
/**
|
|
523
478
|
* Get statistics summary for slow logs of a cluster
|
|
524
479
|
* @summary Get cluster slow log statistics
|
|
@@ -537,21 +492,16 @@ export declare const ClusterLogApiFp: (configuration?: Configuration) => {
|
|
|
537
492
|
* @param {number} [maxRowsExamined]
|
|
538
493
|
* @param {number} [minRowsSent]
|
|
539
494
|
* @param {number} [maxRowsSent]
|
|
540
|
-
* @param {string} [dbName]
|
|
541
|
-
* @param {string} [
|
|
542
|
-
* @param {string} [
|
|
543
|
-
* @param {string} [
|
|
544
|
-
* @param {string} [clientIp]
|
|
545
|
-
* @param {string} [clientIpContains]
|
|
546
|
-
* @param {string} [clientIpCIDR]
|
|
547
|
-
* @param {string} [appName]
|
|
548
|
-
* @param {string} [appNameContains]
|
|
495
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
496
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
497
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
498
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
549
499
|
* @param {string} [templateId]
|
|
550
500
|
* @param {boolean} [unclassifiedOnly]
|
|
551
501
|
* @param {*} [options] Override http request option.
|
|
552
502
|
* @throws {RequiredError}
|
|
553
503
|
*/
|
|
554
|
-
getSlowLogStats(orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string,
|
|
504
|
+
getSlowLogStats(orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, userName?: string, clientIp?: string, appName?: string, templateId?: string, unclassifiedOnly?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterSlowLogStats>>;
|
|
555
505
|
/**
|
|
556
506
|
* Get a slow log template of a cluster (VictoriaLogs backend only)
|
|
557
507
|
* @summary Get cluster slow log template
|
|
@@ -619,21 +569,16 @@ export declare const ClusterLogApiFp: (configuration?: Configuration) => {
|
|
|
619
569
|
* @param {number} [maxRowsExamined]
|
|
620
570
|
* @param {number} [minRowsSent]
|
|
621
571
|
* @param {number} [maxRowsSent]
|
|
622
|
-
* @param {string} [dbName]
|
|
623
|
-
* @param {string} [
|
|
624
|
-
* @param {string} [
|
|
625
|
-
* @param {string} [
|
|
626
|
-
* @param {string} [clientIp]
|
|
627
|
-
* @param {string} [clientIpContains]
|
|
628
|
-
* @param {string} [clientIpCIDR]
|
|
629
|
-
* @param {string} [appName]
|
|
630
|
-
* @param {string} [appNameContains]
|
|
572
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
573
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
574
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
575
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
631
576
|
* @param {string} [templateId]
|
|
632
577
|
* @param {boolean} [unclassifiedOnly]
|
|
633
578
|
* @param {*} [options] Override http request option.
|
|
634
579
|
* @throws {RequiredError}
|
|
635
580
|
*/
|
|
636
|
-
queryLogHits(orgName: string, clusterName: string, startTime: string, endTime: string, step: string, logType: string, componentName?: string, instanceName?: string, query?: string, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string,
|
|
581
|
+
queryLogHits(orgName: string, clusterName: string, startTime: string, endTime: string, step: string, logType: string, componentName?: string, instanceName?: string, query?: string, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, userName?: string, clientIp?: string, appName?: string, templateId?: string, unclassifiedOnly?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterLogHitsResponse>>;
|
|
637
582
|
/**
|
|
638
583
|
* Query pod logs of a cluster
|
|
639
584
|
* @summary Query cluster pod logs
|
|
@@ -688,20 +633,15 @@ export declare const ClusterLogApiFp: (configuration?: Configuration) => {
|
|
|
688
633
|
* @param {number} [maxRowsExamined]
|
|
689
634
|
* @param {number} [minRowsSent]
|
|
690
635
|
* @param {number} [maxRowsSent]
|
|
691
|
-
* @param {string} [dbName]
|
|
692
|
-
* @param {string} [
|
|
693
|
-
* @param {string} [
|
|
694
|
-
* @param {string} [
|
|
695
|
-
* @param {string} [clientIp]
|
|
696
|
-
* @param {string} [clientIpContains]
|
|
697
|
-
* @param {string} [clientIpCIDR]
|
|
698
|
-
* @param {string} [appName]
|
|
699
|
-
* @param {string} [appNameContains]
|
|
636
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
637
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
638
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
639
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
700
640
|
* @param {boolean} [unclassifiedOnly]
|
|
701
641
|
* @param {*} [options] Override http request option.
|
|
702
642
|
* @throws {RequiredError}
|
|
703
643
|
*/
|
|
704
|
-
querySlowLogTemplateSamples(orgName: string, clusterName: string, templateId: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string,
|
|
644
|
+
querySlowLogTemplateSamples(orgName: string, clusterName: string, templateId: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, userName?: string, clientIp?: string, appName?: string, unclassifiedOnly?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterExecutionLog>>;
|
|
705
645
|
/**
|
|
706
646
|
* Query slow log templates of a cluster (VictoriaLogs backend only)
|
|
707
647
|
* @summary Query cluster slow log templates
|
|
@@ -723,19 +663,14 @@ export declare const ClusterLogApiFp: (configuration?: Configuration) => {
|
|
|
723
663
|
* @param {number} [maxRowsExamined]
|
|
724
664
|
* @param {number} [minRowsSent]
|
|
725
665
|
* @param {number} [maxRowsSent]
|
|
726
|
-
* @param {string} [dbName]
|
|
727
|
-
* @param {string} [
|
|
728
|
-
* @param {string} [
|
|
729
|
-
* @param {string} [
|
|
730
|
-
* @param {string} [clientIp]
|
|
731
|
-
* @param {string} [clientIpContains]
|
|
732
|
-
* @param {string} [clientIpCIDR]
|
|
733
|
-
* @param {string} [appName]
|
|
734
|
-
* @param {string} [appNameContains]
|
|
666
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
667
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
668
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
669
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
735
670
|
* @param {*} [options] Override http request option.
|
|
736
671
|
* @throws {RequiredError}
|
|
737
672
|
*/
|
|
738
|
-
querySlowLogTemplates(orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, topN?: number, sortBy?: string, sortType?: SortType, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string,
|
|
673
|
+
querySlowLogTemplates(orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, topN?: number, sortBy?: string, sortType?: SortType, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, userName?: string, clientIp?: string, appName?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterSlowLogTemplateList>>;
|
|
739
674
|
/**
|
|
740
675
|
* Query slow logs of a cluster
|
|
741
676
|
* @summary Query cluster slow logs
|
|
@@ -756,21 +691,16 @@ export declare const ClusterLogApiFp: (configuration?: Configuration) => {
|
|
|
756
691
|
* @param {number} [maxRowsExamined]
|
|
757
692
|
* @param {number} [minRowsSent]
|
|
758
693
|
* @param {number} [maxRowsSent]
|
|
759
|
-
* @param {string} [dbName]
|
|
760
|
-
* @param {string} [
|
|
761
|
-
* @param {string} [
|
|
762
|
-
* @param {string} [
|
|
763
|
-
* @param {string} [clientIp]
|
|
764
|
-
* @param {string} [clientIpContains]
|
|
765
|
-
* @param {string} [clientIpCIDR]
|
|
766
|
-
* @param {string} [appName]
|
|
767
|
-
* @param {string} [appNameContains]
|
|
694
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
695
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
696
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
697
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
768
698
|
* @param {string} [templateId]
|
|
769
699
|
* @param {boolean} [unclassifiedOnly]
|
|
770
700
|
* @param {*} [options] Override http request option.
|
|
771
701
|
* @throws {RequiredError}
|
|
772
702
|
*/
|
|
773
|
-
querySlowLogs(orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string,
|
|
703
|
+
querySlowLogs(orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, userName?: string, clientIp?: string, appName?: string, templateId?: string, unclassifiedOnly?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterExecutionLog>>;
|
|
774
704
|
};
|
|
775
705
|
/**
|
|
776
706
|
* ClusterLogApi - factory interface
|
|
@@ -1234,59 +1164,29 @@ export interface ClusterLogApiAggregateSlowLogsRequest {
|
|
|
1234
1164
|
*/
|
|
1235
1165
|
readonly maxRowsSent?: number;
|
|
1236
1166
|
/**
|
|
1237
|
-
*
|
|
1167
|
+
* Filter slow logs whose database name contains this value.
|
|
1238
1168
|
* @type {string}
|
|
1239
1169
|
* @memberof ClusterLogApiAggregateSlowLogs
|
|
1240
1170
|
*/
|
|
1241
1171
|
readonly dbName?: string;
|
|
1242
1172
|
/**
|
|
1243
|
-
*
|
|
1244
|
-
* @type {string}
|
|
1245
|
-
* @memberof ClusterLogApiAggregateSlowLogs
|
|
1246
|
-
*/
|
|
1247
|
-
readonly dbNameContains?: string;
|
|
1248
|
-
/**
|
|
1249
|
-
*
|
|
1173
|
+
* Filter slow logs whose user name contains this value.
|
|
1250
1174
|
* @type {string}
|
|
1251
1175
|
* @memberof ClusterLogApiAggregateSlowLogs
|
|
1252
1176
|
*/
|
|
1253
1177
|
readonly userName?: string;
|
|
1254
1178
|
/**
|
|
1255
|
-
*
|
|
1256
|
-
* @type {string}
|
|
1257
|
-
* @memberof ClusterLogApiAggregateSlowLogs
|
|
1258
|
-
*/
|
|
1259
|
-
readonly userNameContains?: string;
|
|
1260
|
-
/**
|
|
1261
|
-
*
|
|
1179
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
1262
1180
|
* @type {string}
|
|
1263
1181
|
* @memberof ClusterLogApiAggregateSlowLogs
|
|
1264
1182
|
*/
|
|
1265
1183
|
readonly clientIp?: string;
|
|
1266
1184
|
/**
|
|
1267
|
-
*
|
|
1268
|
-
* @type {string}
|
|
1269
|
-
* @memberof ClusterLogApiAggregateSlowLogs
|
|
1270
|
-
*/
|
|
1271
|
-
readonly clientIpContains?: string;
|
|
1272
|
-
/**
|
|
1273
|
-
*
|
|
1274
|
-
* @type {string}
|
|
1275
|
-
* @memberof ClusterLogApiAggregateSlowLogs
|
|
1276
|
-
*/
|
|
1277
|
-
readonly clientIpCIDR?: string;
|
|
1278
|
-
/**
|
|
1279
|
-
*
|
|
1185
|
+
* Filter slow logs whose application name contains this value.
|
|
1280
1186
|
* @type {string}
|
|
1281
1187
|
* @memberof ClusterLogApiAggregateSlowLogs
|
|
1282
1188
|
*/
|
|
1283
1189
|
readonly appName?: string;
|
|
1284
|
-
/**
|
|
1285
|
-
*
|
|
1286
|
-
* @type {string}
|
|
1287
|
-
* @memberof ClusterLogApiAggregateSlowLogs
|
|
1288
|
-
*/
|
|
1289
|
-
readonly appNameContains?: string;
|
|
1290
1190
|
/**
|
|
1291
1191
|
*
|
|
1292
1192
|
* @type {string}
|
|
@@ -1495,59 +1395,29 @@ export interface ClusterLogApiExportClusterLogsRequest {
|
|
|
1495
1395
|
*/
|
|
1496
1396
|
readonly maxRowsSent?: number;
|
|
1497
1397
|
/**
|
|
1498
|
-
*
|
|
1398
|
+
* Filter slow logs whose database name contains this value.
|
|
1499
1399
|
* @type {string}
|
|
1500
1400
|
* @memberof ClusterLogApiExportClusterLogs
|
|
1501
1401
|
*/
|
|
1502
1402
|
readonly dbName?: string;
|
|
1503
1403
|
/**
|
|
1504
|
-
*
|
|
1505
|
-
* @type {string}
|
|
1506
|
-
* @memberof ClusterLogApiExportClusterLogs
|
|
1507
|
-
*/
|
|
1508
|
-
readonly dbNameContains?: string;
|
|
1509
|
-
/**
|
|
1510
|
-
*
|
|
1404
|
+
* Filter slow logs whose user name contains this value.
|
|
1511
1405
|
* @type {string}
|
|
1512
1406
|
* @memberof ClusterLogApiExportClusterLogs
|
|
1513
1407
|
*/
|
|
1514
1408
|
readonly userName?: string;
|
|
1515
1409
|
/**
|
|
1516
|
-
*
|
|
1517
|
-
* @type {string}
|
|
1518
|
-
* @memberof ClusterLogApiExportClusterLogs
|
|
1519
|
-
*/
|
|
1520
|
-
readonly userNameContains?: string;
|
|
1521
|
-
/**
|
|
1522
|
-
*
|
|
1410
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
1523
1411
|
* @type {string}
|
|
1524
1412
|
* @memberof ClusterLogApiExportClusterLogs
|
|
1525
1413
|
*/
|
|
1526
1414
|
readonly clientIp?: string;
|
|
1527
1415
|
/**
|
|
1528
|
-
*
|
|
1529
|
-
* @type {string}
|
|
1530
|
-
* @memberof ClusterLogApiExportClusterLogs
|
|
1531
|
-
*/
|
|
1532
|
-
readonly clientIpContains?: string;
|
|
1533
|
-
/**
|
|
1534
|
-
*
|
|
1535
|
-
* @type {string}
|
|
1536
|
-
* @memberof ClusterLogApiExportClusterLogs
|
|
1537
|
-
*/
|
|
1538
|
-
readonly clientIpCIDR?: string;
|
|
1539
|
-
/**
|
|
1540
|
-
*
|
|
1416
|
+
* Filter slow logs whose application name contains this value.
|
|
1541
1417
|
* @type {string}
|
|
1542
1418
|
* @memberof ClusterLogApiExportClusterLogs
|
|
1543
1419
|
*/
|
|
1544
1420
|
readonly appName?: string;
|
|
1545
|
-
/**
|
|
1546
|
-
*
|
|
1547
|
-
* @type {string}
|
|
1548
|
-
* @memberof ClusterLogApiExportClusterLogs
|
|
1549
|
-
*/
|
|
1550
|
-
readonly appNameContains?: string;
|
|
1551
1421
|
/**
|
|
1552
1422
|
*
|
|
1553
1423
|
* @type {string}
|
|
@@ -1664,59 +1534,29 @@ export interface ClusterLogApiGetSlowLogStatsRequest {
|
|
|
1664
1534
|
*/
|
|
1665
1535
|
readonly maxRowsSent?: number;
|
|
1666
1536
|
/**
|
|
1667
|
-
*
|
|
1537
|
+
* Filter slow logs whose database name contains this value.
|
|
1668
1538
|
* @type {string}
|
|
1669
1539
|
* @memberof ClusterLogApiGetSlowLogStats
|
|
1670
1540
|
*/
|
|
1671
1541
|
readonly dbName?: string;
|
|
1672
1542
|
/**
|
|
1673
|
-
*
|
|
1674
|
-
* @type {string}
|
|
1675
|
-
* @memberof ClusterLogApiGetSlowLogStats
|
|
1676
|
-
*/
|
|
1677
|
-
readonly dbNameContains?: string;
|
|
1678
|
-
/**
|
|
1679
|
-
*
|
|
1543
|
+
* Filter slow logs whose user name contains this value.
|
|
1680
1544
|
* @type {string}
|
|
1681
1545
|
* @memberof ClusterLogApiGetSlowLogStats
|
|
1682
1546
|
*/
|
|
1683
1547
|
readonly userName?: string;
|
|
1684
1548
|
/**
|
|
1685
|
-
*
|
|
1686
|
-
* @type {string}
|
|
1687
|
-
* @memberof ClusterLogApiGetSlowLogStats
|
|
1688
|
-
*/
|
|
1689
|
-
readonly userNameContains?: string;
|
|
1690
|
-
/**
|
|
1691
|
-
*
|
|
1549
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
1692
1550
|
* @type {string}
|
|
1693
1551
|
* @memberof ClusterLogApiGetSlowLogStats
|
|
1694
1552
|
*/
|
|
1695
1553
|
readonly clientIp?: string;
|
|
1696
1554
|
/**
|
|
1697
|
-
*
|
|
1698
|
-
* @type {string}
|
|
1699
|
-
* @memberof ClusterLogApiGetSlowLogStats
|
|
1700
|
-
*/
|
|
1701
|
-
readonly clientIpContains?: string;
|
|
1702
|
-
/**
|
|
1703
|
-
*
|
|
1704
|
-
* @type {string}
|
|
1705
|
-
* @memberof ClusterLogApiGetSlowLogStats
|
|
1706
|
-
*/
|
|
1707
|
-
readonly clientIpCIDR?: string;
|
|
1708
|
-
/**
|
|
1709
|
-
*
|
|
1555
|
+
* Filter slow logs whose application name contains this value.
|
|
1710
1556
|
* @type {string}
|
|
1711
1557
|
* @memberof ClusterLogApiGetSlowLogStats
|
|
1712
1558
|
*/
|
|
1713
1559
|
readonly appName?: string;
|
|
1714
|
-
/**
|
|
1715
|
-
*
|
|
1716
|
-
* @type {string}
|
|
1717
|
-
* @memberof ClusterLogApiGetSlowLogStats
|
|
1718
|
-
*/
|
|
1719
|
-
readonly appNameContains?: string;
|
|
1720
1560
|
/**
|
|
1721
1561
|
*
|
|
1722
1562
|
* @type {string}
|
|
@@ -2016,59 +1856,29 @@ export interface ClusterLogApiQueryLogHitsRequest {
|
|
|
2016
1856
|
*/
|
|
2017
1857
|
readonly maxRowsSent?: number;
|
|
2018
1858
|
/**
|
|
2019
|
-
*
|
|
1859
|
+
* Filter slow logs whose database name contains this value.
|
|
2020
1860
|
* @type {string}
|
|
2021
1861
|
* @memberof ClusterLogApiQueryLogHits
|
|
2022
1862
|
*/
|
|
2023
1863
|
readonly dbName?: string;
|
|
2024
1864
|
/**
|
|
2025
|
-
*
|
|
2026
|
-
* @type {string}
|
|
2027
|
-
* @memberof ClusterLogApiQueryLogHits
|
|
2028
|
-
*/
|
|
2029
|
-
readonly dbNameContains?: string;
|
|
2030
|
-
/**
|
|
2031
|
-
*
|
|
1865
|
+
* Filter slow logs whose user name contains this value.
|
|
2032
1866
|
* @type {string}
|
|
2033
1867
|
* @memberof ClusterLogApiQueryLogHits
|
|
2034
1868
|
*/
|
|
2035
1869
|
readonly userName?: string;
|
|
2036
1870
|
/**
|
|
2037
|
-
*
|
|
2038
|
-
* @type {string}
|
|
2039
|
-
* @memberof ClusterLogApiQueryLogHits
|
|
2040
|
-
*/
|
|
2041
|
-
readonly userNameContains?: string;
|
|
2042
|
-
/**
|
|
2043
|
-
*
|
|
1871
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
2044
1872
|
* @type {string}
|
|
2045
1873
|
* @memberof ClusterLogApiQueryLogHits
|
|
2046
1874
|
*/
|
|
2047
1875
|
readonly clientIp?: string;
|
|
2048
1876
|
/**
|
|
2049
|
-
*
|
|
2050
|
-
* @type {string}
|
|
2051
|
-
* @memberof ClusterLogApiQueryLogHits
|
|
2052
|
-
*/
|
|
2053
|
-
readonly clientIpContains?: string;
|
|
2054
|
-
/**
|
|
2055
|
-
*
|
|
2056
|
-
* @type {string}
|
|
2057
|
-
* @memberof ClusterLogApiQueryLogHits
|
|
2058
|
-
*/
|
|
2059
|
-
readonly clientIpCIDR?: string;
|
|
2060
|
-
/**
|
|
2061
|
-
*
|
|
1877
|
+
* Filter slow logs whose application name contains this value.
|
|
2062
1878
|
* @type {string}
|
|
2063
1879
|
* @memberof ClusterLogApiQueryLogHits
|
|
2064
1880
|
*/
|
|
2065
1881
|
readonly appName?: string;
|
|
2066
|
-
/**
|
|
2067
|
-
*
|
|
2068
|
-
* @type {string}
|
|
2069
|
-
* @memberof ClusterLogApiQueryLogHits
|
|
2070
|
-
*/
|
|
2071
|
-
readonly appNameContains?: string;
|
|
2072
1882
|
/**
|
|
2073
1883
|
*
|
|
2074
1884
|
* @type {string}
|
|
@@ -2325,59 +2135,29 @@ export interface ClusterLogApiQuerySlowLogTemplateSamplesRequest {
|
|
|
2325
2135
|
*/
|
|
2326
2136
|
readonly maxRowsSent?: number;
|
|
2327
2137
|
/**
|
|
2328
|
-
*
|
|
2138
|
+
* Filter slow logs whose database name contains this value.
|
|
2329
2139
|
* @type {string}
|
|
2330
2140
|
* @memberof ClusterLogApiQuerySlowLogTemplateSamples
|
|
2331
2141
|
*/
|
|
2332
2142
|
readonly dbName?: string;
|
|
2333
2143
|
/**
|
|
2334
|
-
*
|
|
2335
|
-
* @type {string}
|
|
2336
|
-
* @memberof ClusterLogApiQuerySlowLogTemplateSamples
|
|
2337
|
-
*/
|
|
2338
|
-
readonly dbNameContains?: string;
|
|
2339
|
-
/**
|
|
2340
|
-
*
|
|
2144
|
+
* Filter slow logs whose user name contains this value.
|
|
2341
2145
|
* @type {string}
|
|
2342
2146
|
* @memberof ClusterLogApiQuerySlowLogTemplateSamples
|
|
2343
2147
|
*/
|
|
2344
2148
|
readonly userName?: string;
|
|
2345
2149
|
/**
|
|
2346
|
-
*
|
|
2347
|
-
* @type {string}
|
|
2348
|
-
* @memberof ClusterLogApiQuerySlowLogTemplateSamples
|
|
2349
|
-
*/
|
|
2350
|
-
readonly userNameContains?: string;
|
|
2351
|
-
/**
|
|
2352
|
-
*
|
|
2150
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
2353
2151
|
* @type {string}
|
|
2354
2152
|
* @memberof ClusterLogApiQuerySlowLogTemplateSamples
|
|
2355
2153
|
*/
|
|
2356
2154
|
readonly clientIp?: string;
|
|
2357
2155
|
/**
|
|
2358
|
-
*
|
|
2359
|
-
* @type {string}
|
|
2360
|
-
* @memberof ClusterLogApiQuerySlowLogTemplateSamples
|
|
2361
|
-
*/
|
|
2362
|
-
readonly clientIpContains?: string;
|
|
2363
|
-
/**
|
|
2364
|
-
*
|
|
2365
|
-
* @type {string}
|
|
2366
|
-
* @memberof ClusterLogApiQuerySlowLogTemplateSamples
|
|
2367
|
-
*/
|
|
2368
|
-
readonly clientIpCIDR?: string;
|
|
2369
|
-
/**
|
|
2370
|
-
*
|
|
2156
|
+
* Filter slow logs whose application name contains this value.
|
|
2371
2157
|
* @type {string}
|
|
2372
2158
|
* @memberof ClusterLogApiQuerySlowLogTemplateSamples
|
|
2373
2159
|
*/
|
|
2374
2160
|
readonly appName?: string;
|
|
2375
|
-
/**
|
|
2376
|
-
*
|
|
2377
|
-
* @type {string}
|
|
2378
|
-
* @memberof ClusterLogApiQuerySlowLogTemplateSamples
|
|
2379
|
-
*/
|
|
2380
|
-
readonly appNameContains?: string;
|
|
2381
2161
|
/**
|
|
2382
2162
|
*
|
|
2383
2163
|
* @type {boolean}
|
|
@@ -2500,59 +2280,29 @@ export interface ClusterLogApiQuerySlowLogTemplatesRequest {
|
|
|
2500
2280
|
*/
|
|
2501
2281
|
readonly maxRowsSent?: number;
|
|
2502
2282
|
/**
|
|
2503
|
-
*
|
|
2283
|
+
* Filter slow logs whose database name contains this value.
|
|
2504
2284
|
* @type {string}
|
|
2505
2285
|
* @memberof ClusterLogApiQuerySlowLogTemplates
|
|
2506
2286
|
*/
|
|
2507
2287
|
readonly dbName?: string;
|
|
2508
2288
|
/**
|
|
2509
|
-
*
|
|
2510
|
-
* @type {string}
|
|
2511
|
-
* @memberof ClusterLogApiQuerySlowLogTemplates
|
|
2512
|
-
*/
|
|
2513
|
-
readonly dbNameContains?: string;
|
|
2514
|
-
/**
|
|
2515
|
-
*
|
|
2289
|
+
* Filter slow logs whose user name contains this value.
|
|
2516
2290
|
* @type {string}
|
|
2517
2291
|
* @memberof ClusterLogApiQuerySlowLogTemplates
|
|
2518
2292
|
*/
|
|
2519
2293
|
readonly userName?: string;
|
|
2520
2294
|
/**
|
|
2521
|
-
*
|
|
2522
|
-
* @type {string}
|
|
2523
|
-
* @memberof ClusterLogApiQuerySlowLogTemplates
|
|
2524
|
-
*/
|
|
2525
|
-
readonly userNameContains?: string;
|
|
2526
|
-
/**
|
|
2527
|
-
*
|
|
2295
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
2528
2296
|
* @type {string}
|
|
2529
2297
|
* @memberof ClusterLogApiQuerySlowLogTemplates
|
|
2530
2298
|
*/
|
|
2531
2299
|
readonly clientIp?: string;
|
|
2532
2300
|
/**
|
|
2533
|
-
*
|
|
2534
|
-
* @type {string}
|
|
2535
|
-
* @memberof ClusterLogApiQuerySlowLogTemplates
|
|
2536
|
-
*/
|
|
2537
|
-
readonly clientIpContains?: string;
|
|
2538
|
-
/**
|
|
2539
|
-
*
|
|
2540
|
-
* @type {string}
|
|
2541
|
-
* @memberof ClusterLogApiQuerySlowLogTemplates
|
|
2542
|
-
*/
|
|
2543
|
-
readonly clientIpCIDR?: string;
|
|
2544
|
-
/**
|
|
2545
|
-
*
|
|
2301
|
+
* Filter slow logs whose application name contains this value.
|
|
2546
2302
|
* @type {string}
|
|
2547
2303
|
* @memberof ClusterLogApiQuerySlowLogTemplates
|
|
2548
2304
|
*/
|
|
2549
2305
|
readonly appName?: string;
|
|
2550
|
-
/**
|
|
2551
|
-
*
|
|
2552
|
-
* @type {string}
|
|
2553
|
-
* @memberof ClusterLogApiQuerySlowLogTemplates
|
|
2554
|
-
*/
|
|
2555
|
-
readonly appNameContains?: string;
|
|
2556
2306
|
}
|
|
2557
2307
|
/**
|
|
2558
2308
|
* Request parameters for querySlowLogs operation in ClusterLogApi.
|
|
@@ -2663,59 +2413,29 @@ export interface ClusterLogApiQuerySlowLogsRequest {
|
|
|
2663
2413
|
*/
|
|
2664
2414
|
readonly maxRowsSent?: number;
|
|
2665
2415
|
/**
|
|
2666
|
-
*
|
|
2416
|
+
* Filter slow logs whose database name contains this value.
|
|
2667
2417
|
* @type {string}
|
|
2668
2418
|
* @memberof ClusterLogApiQuerySlowLogs
|
|
2669
2419
|
*/
|
|
2670
2420
|
readonly dbName?: string;
|
|
2671
2421
|
/**
|
|
2672
|
-
*
|
|
2673
|
-
* @type {string}
|
|
2674
|
-
* @memberof ClusterLogApiQuerySlowLogs
|
|
2675
|
-
*/
|
|
2676
|
-
readonly dbNameContains?: string;
|
|
2677
|
-
/**
|
|
2678
|
-
*
|
|
2422
|
+
* Filter slow logs whose user name contains this value.
|
|
2679
2423
|
* @type {string}
|
|
2680
2424
|
* @memberof ClusterLogApiQuerySlowLogs
|
|
2681
2425
|
*/
|
|
2682
2426
|
readonly userName?: string;
|
|
2683
2427
|
/**
|
|
2684
|
-
*
|
|
2685
|
-
* @type {string}
|
|
2686
|
-
* @memberof ClusterLogApiQuerySlowLogs
|
|
2687
|
-
*/
|
|
2688
|
-
readonly userNameContains?: string;
|
|
2689
|
-
/**
|
|
2690
|
-
*
|
|
2428
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
2691
2429
|
* @type {string}
|
|
2692
2430
|
* @memberof ClusterLogApiQuerySlowLogs
|
|
2693
2431
|
*/
|
|
2694
2432
|
readonly clientIp?: string;
|
|
2695
2433
|
/**
|
|
2696
|
-
*
|
|
2697
|
-
* @type {string}
|
|
2698
|
-
* @memberof ClusterLogApiQuerySlowLogs
|
|
2699
|
-
*/
|
|
2700
|
-
readonly clientIpContains?: string;
|
|
2701
|
-
/**
|
|
2702
|
-
*
|
|
2703
|
-
* @type {string}
|
|
2704
|
-
* @memberof ClusterLogApiQuerySlowLogs
|
|
2705
|
-
*/
|
|
2706
|
-
readonly clientIpCIDR?: string;
|
|
2707
|
-
/**
|
|
2708
|
-
*
|
|
2434
|
+
* Filter slow logs whose application name contains this value.
|
|
2709
2435
|
* @type {string}
|
|
2710
2436
|
* @memberof ClusterLogApiQuerySlowLogs
|
|
2711
2437
|
*/
|
|
2712
2438
|
readonly appName?: string;
|
|
2713
|
-
/**
|
|
2714
|
-
*
|
|
2715
|
-
* @type {string}
|
|
2716
|
-
* @memberof ClusterLogApiQuerySlowLogs
|
|
2717
|
-
*/
|
|
2718
|
-
readonly appNameContains?: string;
|
|
2719
2439
|
/**
|
|
2720
2440
|
*
|
|
2721
2441
|
* @type {string}
|