kb-cloud-client-typescript 2.3.0-alpha.109 → 2.3.0-alpha.110
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 +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/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/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/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/package.json +1 -6
- package/src/adminapi/apis/cluster-log-api.ts +102 -492
- package/src/adminapi/apis/shared-api.ts +102 -492
- package/src/adminapi.yaml +24 -120
- package/src/openapi/apis/cluster-log-api.ts +119 -574
- package/src/openapi/apis/shared-api.ts +119 -574
- package/src/openapi.yaml +28 -140
|
@@ -49,21 +49,16 @@ export declare const ClusterLogApiAxiosParamCreator: (configuration?: Configurat
|
|
|
49
49
|
* @param {number} [maxRowsExamined]
|
|
50
50
|
* @param {number} [minRowsSent]
|
|
51
51
|
* @param {number} [maxRowsSent]
|
|
52
|
-
* @param {string} [dbName]
|
|
53
|
-
* @param {string} [
|
|
54
|
-
* @param {string} [
|
|
55
|
-
* @param {string} [
|
|
56
|
-
* @param {string} [clientIp]
|
|
57
|
-
* @param {string} [clientIpContains]
|
|
58
|
-
* @param {string} [clientIpCIDR]
|
|
59
|
-
* @param {string} [appName]
|
|
60
|
-
* @param {string} [appNameContains]
|
|
52
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
53
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
54
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
55
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
61
56
|
* @param {string} [templateId]
|
|
62
57
|
* @param {boolean} [unclassifiedOnly]
|
|
63
58
|
* @param {*} [options] Override http request option.
|
|
64
59
|
* @throws {RequiredError}
|
|
65
60
|
*/
|
|
66
|
-
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,
|
|
61
|
+
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>;
|
|
67
62
|
/**
|
|
68
63
|
* Explain a concrete SQL from a slow log using the cluster default datasource.
|
|
69
64
|
* @summary Explain cluster slow log SQL
|
|
@@ -107,21 +102,16 @@ export declare const ClusterLogApiAxiosParamCreator: (configuration?: Configurat
|
|
|
107
102
|
* @param {number} [maxRowsExamined]
|
|
108
103
|
* @param {number} [minRowsSent]
|
|
109
104
|
* @param {number} [maxRowsSent]
|
|
110
|
-
* @param {string} [dbName]
|
|
111
|
-
* @param {string} [
|
|
112
|
-
* @param {string} [
|
|
113
|
-
* @param {string} [
|
|
114
|
-
* @param {string} [clientIp]
|
|
115
|
-
* @param {string} [clientIpContains]
|
|
116
|
-
* @param {string} [clientIpCIDR]
|
|
117
|
-
* @param {string} [appName]
|
|
118
|
-
* @param {string} [appNameContains]
|
|
105
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
106
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
107
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
108
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
119
109
|
* @param {string} [templateId]
|
|
120
110
|
* @param {boolean} [unclassifiedOnly]
|
|
121
111
|
* @param {*} [options] Override http request option.
|
|
122
112
|
* @throws {RequiredError}
|
|
123
113
|
*/
|
|
124
|
-
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,
|
|
114
|
+
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>;
|
|
125
115
|
/**
|
|
126
116
|
* Get a slow log template of a cluster (VictoriaLogs backend only)
|
|
127
117
|
* @summary Get cluster slow log template
|
|
@@ -189,21 +179,16 @@ export declare const ClusterLogApiAxiosParamCreator: (configuration?: Configurat
|
|
|
189
179
|
* @param {number} [maxRowsExamined]
|
|
190
180
|
* @param {number} [minRowsSent]
|
|
191
181
|
* @param {number} [maxRowsSent]
|
|
192
|
-
* @param {string} [dbName]
|
|
193
|
-
* @param {string} [
|
|
194
|
-
* @param {string} [
|
|
195
|
-
* @param {string} [
|
|
196
|
-
* @param {string} [clientIp]
|
|
197
|
-
* @param {string} [clientIpContains]
|
|
198
|
-
* @param {string} [clientIpCIDR]
|
|
199
|
-
* @param {string} [appName]
|
|
200
|
-
* @param {string} [appNameContains]
|
|
182
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
183
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
184
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
185
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
201
186
|
* @param {string} [templateId]
|
|
202
187
|
* @param {boolean} [unclassifiedOnly]
|
|
203
188
|
* @param {*} [options] Override http request option.
|
|
204
189
|
* @throws {RequiredError}
|
|
205
190
|
*/
|
|
206
|
-
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,
|
|
191
|
+
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>;
|
|
207
192
|
/**
|
|
208
193
|
* Query pod logs of a cluster
|
|
209
194
|
* @summary Query cluster pod logs
|
|
@@ -258,20 +243,15 @@ export declare const ClusterLogApiAxiosParamCreator: (configuration?: Configurat
|
|
|
258
243
|
* @param {number} [maxRowsExamined]
|
|
259
244
|
* @param {number} [minRowsSent]
|
|
260
245
|
* @param {number} [maxRowsSent]
|
|
261
|
-
* @param {string} [dbName]
|
|
262
|
-
* @param {string} [
|
|
263
|
-
* @param {string} [
|
|
264
|
-
* @param {string} [
|
|
265
|
-
* @param {string} [clientIp]
|
|
266
|
-
* @param {string} [clientIpContains]
|
|
267
|
-
* @param {string} [clientIpCIDR]
|
|
268
|
-
* @param {string} [appName]
|
|
269
|
-
* @param {string} [appNameContains]
|
|
246
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
247
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
248
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
249
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
270
250
|
* @param {boolean} [unclassifiedOnly]
|
|
271
251
|
* @param {*} [options] Override http request option.
|
|
272
252
|
* @throws {RequiredError}
|
|
273
253
|
*/
|
|
274
|
-
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,
|
|
254
|
+
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>;
|
|
275
255
|
/**
|
|
276
256
|
* Query slow log templates of a cluster (VictoriaLogs backend only)
|
|
277
257
|
* @summary Query cluster slow log templates
|
|
@@ -293,19 +273,14 @@ export declare const ClusterLogApiAxiosParamCreator: (configuration?: Configurat
|
|
|
293
273
|
* @param {number} [maxRowsExamined]
|
|
294
274
|
* @param {number} [minRowsSent]
|
|
295
275
|
* @param {number} [maxRowsSent]
|
|
296
|
-
* @param {string} [dbName]
|
|
297
|
-
* @param {string} [
|
|
298
|
-
* @param {string} [
|
|
299
|
-
* @param {string} [
|
|
300
|
-
* @param {string} [clientIp]
|
|
301
|
-
* @param {string} [clientIpContains]
|
|
302
|
-
* @param {string} [clientIpCIDR]
|
|
303
|
-
* @param {string} [appName]
|
|
304
|
-
* @param {string} [appNameContains]
|
|
276
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
277
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
278
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
279
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
305
280
|
* @param {*} [options] Override http request option.
|
|
306
281
|
* @throws {RequiredError}
|
|
307
282
|
*/
|
|
308
|
-
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,
|
|
283
|
+
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>;
|
|
309
284
|
/**
|
|
310
285
|
* Query slow logs of a cluster
|
|
311
286
|
* @summary Query cluster slow logs
|
|
@@ -326,21 +301,16 @@ export declare const ClusterLogApiAxiosParamCreator: (configuration?: Configurat
|
|
|
326
301
|
* @param {number} [maxRowsExamined]
|
|
327
302
|
* @param {number} [minRowsSent]
|
|
328
303
|
* @param {number} [maxRowsSent]
|
|
329
|
-
* @param {string} [dbName]
|
|
330
|
-
* @param {string} [
|
|
331
|
-
* @param {string} [
|
|
332
|
-
* @param {string} [
|
|
333
|
-
* @param {string} [clientIp]
|
|
334
|
-
* @param {string} [clientIpContains]
|
|
335
|
-
* @param {string} [clientIpCIDR]
|
|
336
|
-
* @param {string} [appName]
|
|
337
|
-
* @param {string} [appNameContains]
|
|
304
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
305
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
306
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
307
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
338
308
|
* @param {string} [templateId]
|
|
339
309
|
* @param {boolean} [unclassifiedOnly]
|
|
340
310
|
* @param {*} [options] Override http request option.
|
|
341
311
|
* @throws {RequiredError}
|
|
342
312
|
*/
|
|
343
|
-
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,
|
|
313
|
+
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>;
|
|
344
314
|
};
|
|
345
315
|
/**
|
|
346
316
|
* ClusterLogApi - functional programming interface
|
|
@@ -369,21 +339,16 @@ export declare const ClusterLogApiFp: (configuration?: Configuration) => {
|
|
|
369
339
|
* @param {number} [maxRowsExamined]
|
|
370
340
|
* @param {number} [minRowsSent]
|
|
371
341
|
* @param {number} [maxRowsSent]
|
|
372
|
-
* @param {string} [dbName]
|
|
373
|
-
* @param {string} [
|
|
374
|
-
* @param {string} [
|
|
375
|
-
* @param {string} [
|
|
376
|
-
* @param {string} [clientIp]
|
|
377
|
-
* @param {string} [clientIpContains]
|
|
378
|
-
* @param {string} [clientIpCIDR]
|
|
379
|
-
* @param {string} [appName]
|
|
380
|
-
* @param {string} [appNameContains]
|
|
342
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
343
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
344
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
345
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
381
346
|
* @param {string} [templateId]
|
|
382
347
|
* @param {boolean} [unclassifiedOnly]
|
|
383
348
|
* @param {*} [options] Override http request option.
|
|
384
349
|
* @throws {RequiredError}
|
|
385
350
|
*/
|
|
386
|
-
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,
|
|
351
|
+
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>>;
|
|
387
352
|
/**
|
|
388
353
|
* Explain a concrete SQL from a slow log using the cluster default datasource.
|
|
389
354
|
* @summary Explain cluster slow log SQL
|
|
@@ -427,21 +392,16 @@ export declare const ClusterLogApiFp: (configuration?: Configuration) => {
|
|
|
427
392
|
* @param {number} [maxRowsExamined]
|
|
428
393
|
* @param {number} [minRowsSent]
|
|
429
394
|
* @param {number} [maxRowsSent]
|
|
430
|
-
* @param {string} [dbName]
|
|
431
|
-
* @param {string} [
|
|
432
|
-
* @param {string} [
|
|
433
|
-
* @param {string} [
|
|
434
|
-
* @param {string} [clientIp]
|
|
435
|
-
* @param {string} [clientIpContains]
|
|
436
|
-
* @param {string} [clientIpCIDR]
|
|
437
|
-
* @param {string} [appName]
|
|
438
|
-
* @param {string} [appNameContains]
|
|
395
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
396
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
397
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
398
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
439
399
|
* @param {string} [templateId]
|
|
440
400
|
* @param {boolean} [unclassifiedOnly]
|
|
441
401
|
* @param {*} [options] Override http request option.
|
|
442
402
|
* @throws {RequiredError}
|
|
443
403
|
*/
|
|
444
|
-
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,
|
|
404
|
+
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>>;
|
|
445
405
|
/**
|
|
446
406
|
* Get a slow log template of a cluster (VictoriaLogs backend only)
|
|
447
407
|
* @summary Get cluster slow log template
|
|
@@ -509,21 +469,16 @@ export declare const ClusterLogApiFp: (configuration?: Configuration) => {
|
|
|
509
469
|
* @param {number} [maxRowsExamined]
|
|
510
470
|
* @param {number} [minRowsSent]
|
|
511
471
|
* @param {number} [maxRowsSent]
|
|
512
|
-
* @param {string} [dbName]
|
|
513
|
-
* @param {string} [
|
|
514
|
-
* @param {string} [
|
|
515
|
-
* @param {string} [
|
|
516
|
-
* @param {string} [clientIp]
|
|
517
|
-
* @param {string} [clientIpContains]
|
|
518
|
-
* @param {string} [clientIpCIDR]
|
|
519
|
-
* @param {string} [appName]
|
|
520
|
-
* @param {string} [appNameContains]
|
|
472
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
473
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
474
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
475
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
521
476
|
* @param {string} [templateId]
|
|
522
477
|
* @param {boolean} [unclassifiedOnly]
|
|
523
478
|
* @param {*} [options] Override http request option.
|
|
524
479
|
* @throws {RequiredError}
|
|
525
480
|
*/
|
|
526
|
-
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,
|
|
481
|
+
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>>;
|
|
527
482
|
/**
|
|
528
483
|
* Query pod logs of a cluster
|
|
529
484
|
* @summary Query cluster pod logs
|
|
@@ -578,20 +533,15 @@ export declare const ClusterLogApiFp: (configuration?: Configuration) => {
|
|
|
578
533
|
* @param {number} [maxRowsExamined]
|
|
579
534
|
* @param {number} [minRowsSent]
|
|
580
535
|
* @param {number} [maxRowsSent]
|
|
581
|
-
* @param {string} [dbName]
|
|
582
|
-
* @param {string} [
|
|
583
|
-
* @param {string} [
|
|
584
|
-
* @param {string} [
|
|
585
|
-
* @param {string} [clientIp]
|
|
586
|
-
* @param {string} [clientIpContains]
|
|
587
|
-
* @param {string} [clientIpCIDR]
|
|
588
|
-
* @param {string} [appName]
|
|
589
|
-
* @param {string} [appNameContains]
|
|
536
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
537
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
538
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
539
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
590
540
|
* @param {boolean} [unclassifiedOnly]
|
|
591
541
|
* @param {*} [options] Override http request option.
|
|
592
542
|
* @throws {RequiredError}
|
|
593
543
|
*/
|
|
594
|
-
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,
|
|
544
|
+
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>>;
|
|
595
545
|
/**
|
|
596
546
|
* Query slow log templates of a cluster (VictoriaLogs backend only)
|
|
597
547
|
* @summary Query cluster slow log templates
|
|
@@ -613,19 +563,14 @@ export declare const ClusterLogApiFp: (configuration?: Configuration) => {
|
|
|
613
563
|
* @param {number} [maxRowsExamined]
|
|
614
564
|
* @param {number} [minRowsSent]
|
|
615
565
|
* @param {number} [maxRowsSent]
|
|
616
|
-
* @param {string} [dbName]
|
|
617
|
-
* @param {string} [
|
|
618
|
-
* @param {string} [
|
|
619
|
-
* @param {string} [
|
|
620
|
-
* @param {string} [clientIp]
|
|
621
|
-
* @param {string} [clientIpContains]
|
|
622
|
-
* @param {string} [clientIpCIDR]
|
|
623
|
-
* @param {string} [appName]
|
|
624
|
-
* @param {string} [appNameContains]
|
|
566
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
567
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
568
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
569
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
625
570
|
* @param {*} [options] Override http request option.
|
|
626
571
|
* @throws {RequiredError}
|
|
627
572
|
*/
|
|
628
|
-
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,
|
|
573
|
+
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>>;
|
|
629
574
|
/**
|
|
630
575
|
* Query slow logs of a cluster
|
|
631
576
|
* @summary Query cluster slow logs
|
|
@@ -646,21 +591,16 @@ export declare const ClusterLogApiFp: (configuration?: Configuration) => {
|
|
|
646
591
|
* @param {number} [maxRowsExamined]
|
|
647
592
|
* @param {number} [minRowsSent]
|
|
648
593
|
* @param {number} [maxRowsSent]
|
|
649
|
-
* @param {string} [dbName]
|
|
650
|
-
* @param {string} [
|
|
651
|
-
* @param {string} [
|
|
652
|
-
* @param {string} [
|
|
653
|
-
* @param {string} [clientIp]
|
|
654
|
-
* @param {string} [clientIpContains]
|
|
655
|
-
* @param {string} [clientIpCIDR]
|
|
656
|
-
* @param {string} [appName]
|
|
657
|
-
* @param {string} [appNameContains]
|
|
594
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
595
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
596
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
597
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
658
598
|
* @param {string} [templateId]
|
|
659
599
|
* @param {boolean} [unclassifiedOnly]
|
|
660
600
|
* @param {*} [options] Override http request option.
|
|
661
601
|
* @throws {RequiredError}
|
|
662
602
|
*/
|
|
663
|
-
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,
|
|
603
|
+
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>>;
|
|
664
604
|
};
|
|
665
605
|
/**
|
|
666
606
|
* ClusterLogApi - factory interface
|
|
@@ -1017,59 +957,29 @@ export interface ClusterLogApiAggregateSlowLogsRequest {
|
|
|
1017
957
|
*/
|
|
1018
958
|
readonly maxRowsSent?: number;
|
|
1019
959
|
/**
|
|
1020
|
-
*
|
|
960
|
+
* Filter slow logs whose database name contains this value.
|
|
1021
961
|
* @type {string}
|
|
1022
962
|
* @memberof ClusterLogApiAggregateSlowLogs
|
|
1023
963
|
*/
|
|
1024
964
|
readonly dbName?: string;
|
|
1025
965
|
/**
|
|
1026
|
-
*
|
|
1027
|
-
* @type {string}
|
|
1028
|
-
* @memberof ClusterLogApiAggregateSlowLogs
|
|
1029
|
-
*/
|
|
1030
|
-
readonly dbNameContains?: string;
|
|
1031
|
-
/**
|
|
1032
|
-
*
|
|
966
|
+
* Filter slow logs whose user name contains this value.
|
|
1033
967
|
* @type {string}
|
|
1034
968
|
* @memberof ClusterLogApiAggregateSlowLogs
|
|
1035
969
|
*/
|
|
1036
970
|
readonly userName?: string;
|
|
1037
971
|
/**
|
|
1038
|
-
*
|
|
1039
|
-
* @type {string}
|
|
1040
|
-
* @memberof ClusterLogApiAggregateSlowLogs
|
|
1041
|
-
*/
|
|
1042
|
-
readonly userNameContains?: string;
|
|
1043
|
-
/**
|
|
1044
|
-
*
|
|
972
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
1045
973
|
* @type {string}
|
|
1046
974
|
* @memberof ClusterLogApiAggregateSlowLogs
|
|
1047
975
|
*/
|
|
1048
976
|
readonly clientIp?: string;
|
|
1049
977
|
/**
|
|
1050
|
-
*
|
|
1051
|
-
* @type {string}
|
|
1052
|
-
* @memberof ClusterLogApiAggregateSlowLogs
|
|
1053
|
-
*/
|
|
1054
|
-
readonly clientIpContains?: string;
|
|
1055
|
-
/**
|
|
1056
|
-
*
|
|
1057
|
-
* @type {string}
|
|
1058
|
-
* @memberof ClusterLogApiAggregateSlowLogs
|
|
1059
|
-
*/
|
|
1060
|
-
readonly clientIpCIDR?: string;
|
|
1061
|
-
/**
|
|
1062
|
-
*
|
|
978
|
+
* Filter slow logs whose application name contains this value.
|
|
1063
979
|
* @type {string}
|
|
1064
980
|
* @memberof ClusterLogApiAggregateSlowLogs
|
|
1065
981
|
*/
|
|
1066
982
|
readonly appName?: string;
|
|
1067
|
-
/**
|
|
1068
|
-
*
|
|
1069
|
-
* @type {string}
|
|
1070
|
-
* @memberof ClusterLogApiAggregateSlowLogs
|
|
1071
|
-
*/
|
|
1072
|
-
readonly appNameContains?: string;
|
|
1073
983
|
/**
|
|
1074
984
|
*
|
|
1075
985
|
* @type {string}
|
|
@@ -1260,59 +1170,29 @@ export interface ClusterLogApiGetSlowLogStatsRequest {
|
|
|
1260
1170
|
*/
|
|
1261
1171
|
readonly maxRowsSent?: number;
|
|
1262
1172
|
/**
|
|
1263
|
-
*
|
|
1173
|
+
* Filter slow logs whose database name contains this value.
|
|
1264
1174
|
* @type {string}
|
|
1265
1175
|
* @memberof ClusterLogApiGetSlowLogStats
|
|
1266
1176
|
*/
|
|
1267
1177
|
readonly dbName?: string;
|
|
1268
1178
|
/**
|
|
1269
|
-
*
|
|
1270
|
-
* @type {string}
|
|
1271
|
-
* @memberof ClusterLogApiGetSlowLogStats
|
|
1272
|
-
*/
|
|
1273
|
-
readonly dbNameContains?: string;
|
|
1274
|
-
/**
|
|
1275
|
-
*
|
|
1179
|
+
* Filter slow logs whose user name contains this value.
|
|
1276
1180
|
* @type {string}
|
|
1277
1181
|
* @memberof ClusterLogApiGetSlowLogStats
|
|
1278
1182
|
*/
|
|
1279
1183
|
readonly userName?: string;
|
|
1280
1184
|
/**
|
|
1281
|
-
*
|
|
1282
|
-
* @type {string}
|
|
1283
|
-
* @memberof ClusterLogApiGetSlowLogStats
|
|
1284
|
-
*/
|
|
1285
|
-
readonly userNameContains?: string;
|
|
1286
|
-
/**
|
|
1287
|
-
*
|
|
1185
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
1288
1186
|
* @type {string}
|
|
1289
1187
|
* @memberof ClusterLogApiGetSlowLogStats
|
|
1290
1188
|
*/
|
|
1291
1189
|
readonly clientIp?: string;
|
|
1292
1190
|
/**
|
|
1293
|
-
*
|
|
1294
|
-
* @type {string}
|
|
1295
|
-
* @memberof ClusterLogApiGetSlowLogStats
|
|
1296
|
-
*/
|
|
1297
|
-
readonly clientIpContains?: string;
|
|
1298
|
-
/**
|
|
1299
|
-
*
|
|
1300
|
-
* @type {string}
|
|
1301
|
-
* @memberof ClusterLogApiGetSlowLogStats
|
|
1302
|
-
*/
|
|
1303
|
-
readonly clientIpCIDR?: string;
|
|
1304
|
-
/**
|
|
1305
|
-
*
|
|
1191
|
+
* Filter slow logs whose application name contains this value.
|
|
1306
1192
|
* @type {string}
|
|
1307
1193
|
* @memberof ClusterLogApiGetSlowLogStats
|
|
1308
1194
|
*/
|
|
1309
1195
|
readonly appName?: string;
|
|
1310
|
-
/**
|
|
1311
|
-
*
|
|
1312
|
-
* @type {string}
|
|
1313
|
-
* @memberof ClusterLogApiGetSlowLogStats
|
|
1314
|
-
*/
|
|
1315
|
-
readonly appNameContains?: string;
|
|
1316
1196
|
/**
|
|
1317
1197
|
*
|
|
1318
1198
|
* @type {string}
|
|
@@ -1612,59 +1492,29 @@ export interface ClusterLogApiQueryLogHitsRequest {
|
|
|
1612
1492
|
*/
|
|
1613
1493
|
readonly maxRowsSent?: number;
|
|
1614
1494
|
/**
|
|
1615
|
-
*
|
|
1495
|
+
* Filter slow logs whose database name contains this value.
|
|
1616
1496
|
* @type {string}
|
|
1617
1497
|
* @memberof ClusterLogApiQueryLogHits
|
|
1618
1498
|
*/
|
|
1619
1499
|
readonly dbName?: string;
|
|
1620
1500
|
/**
|
|
1621
|
-
*
|
|
1622
|
-
* @type {string}
|
|
1623
|
-
* @memberof ClusterLogApiQueryLogHits
|
|
1624
|
-
*/
|
|
1625
|
-
readonly dbNameContains?: string;
|
|
1626
|
-
/**
|
|
1627
|
-
*
|
|
1501
|
+
* Filter slow logs whose user name contains this value.
|
|
1628
1502
|
* @type {string}
|
|
1629
1503
|
* @memberof ClusterLogApiQueryLogHits
|
|
1630
1504
|
*/
|
|
1631
1505
|
readonly userName?: string;
|
|
1632
1506
|
/**
|
|
1633
|
-
*
|
|
1634
|
-
* @type {string}
|
|
1635
|
-
* @memberof ClusterLogApiQueryLogHits
|
|
1636
|
-
*/
|
|
1637
|
-
readonly userNameContains?: string;
|
|
1638
|
-
/**
|
|
1639
|
-
*
|
|
1507
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
1640
1508
|
* @type {string}
|
|
1641
1509
|
* @memberof ClusterLogApiQueryLogHits
|
|
1642
1510
|
*/
|
|
1643
1511
|
readonly clientIp?: string;
|
|
1644
1512
|
/**
|
|
1645
|
-
*
|
|
1646
|
-
* @type {string}
|
|
1647
|
-
* @memberof ClusterLogApiQueryLogHits
|
|
1648
|
-
*/
|
|
1649
|
-
readonly clientIpContains?: string;
|
|
1650
|
-
/**
|
|
1651
|
-
*
|
|
1652
|
-
* @type {string}
|
|
1653
|
-
* @memberof ClusterLogApiQueryLogHits
|
|
1654
|
-
*/
|
|
1655
|
-
readonly clientIpCIDR?: string;
|
|
1656
|
-
/**
|
|
1657
|
-
*
|
|
1513
|
+
* Filter slow logs whose application name contains this value.
|
|
1658
1514
|
* @type {string}
|
|
1659
1515
|
* @memberof ClusterLogApiQueryLogHits
|
|
1660
1516
|
*/
|
|
1661
1517
|
readonly appName?: string;
|
|
1662
|
-
/**
|
|
1663
|
-
*
|
|
1664
|
-
* @type {string}
|
|
1665
|
-
* @memberof ClusterLogApiQueryLogHits
|
|
1666
|
-
*/
|
|
1667
|
-
readonly appNameContains?: string;
|
|
1668
1518
|
/**
|
|
1669
1519
|
*
|
|
1670
1520
|
* @type {string}
|
|
@@ -1921,59 +1771,29 @@ export interface ClusterLogApiQuerySlowLogTemplateSamplesRequest {
|
|
|
1921
1771
|
*/
|
|
1922
1772
|
readonly maxRowsSent?: number;
|
|
1923
1773
|
/**
|
|
1924
|
-
*
|
|
1774
|
+
* Filter slow logs whose database name contains this value.
|
|
1925
1775
|
* @type {string}
|
|
1926
1776
|
* @memberof ClusterLogApiQuerySlowLogTemplateSamples
|
|
1927
1777
|
*/
|
|
1928
1778
|
readonly dbName?: string;
|
|
1929
1779
|
/**
|
|
1930
|
-
*
|
|
1931
|
-
* @type {string}
|
|
1932
|
-
* @memberof ClusterLogApiQuerySlowLogTemplateSamples
|
|
1933
|
-
*/
|
|
1934
|
-
readonly dbNameContains?: string;
|
|
1935
|
-
/**
|
|
1936
|
-
*
|
|
1780
|
+
* Filter slow logs whose user name contains this value.
|
|
1937
1781
|
* @type {string}
|
|
1938
1782
|
* @memberof ClusterLogApiQuerySlowLogTemplateSamples
|
|
1939
1783
|
*/
|
|
1940
1784
|
readonly userName?: string;
|
|
1941
1785
|
/**
|
|
1942
|
-
*
|
|
1943
|
-
* @type {string}
|
|
1944
|
-
* @memberof ClusterLogApiQuerySlowLogTemplateSamples
|
|
1945
|
-
*/
|
|
1946
|
-
readonly userNameContains?: string;
|
|
1947
|
-
/**
|
|
1948
|
-
*
|
|
1786
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
1949
1787
|
* @type {string}
|
|
1950
1788
|
* @memberof ClusterLogApiQuerySlowLogTemplateSamples
|
|
1951
1789
|
*/
|
|
1952
1790
|
readonly clientIp?: string;
|
|
1953
1791
|
/**
|
|
1954
|
-
*
|
|
1955
|
-
* @type {string}
|
|
1956
|
-
* @memberof ClusterLogApiQuerySlowLogTemplateSamples
|
|
1957
|
-
*/
|
|
1958
|
-
readonly clientIpContains?: string;
|
|
1959
|
-
/**
|
|
1960
|
-
*
|
|
1961
|
-
* @type {string}
|
|
1962
|
-
* @memberof ClusterLogApiQuerySlowLogTemplateSamples
|
|
1963
|
-
*/
|
|
1964
|
-
readonly clientIpCIDR?: string;
|
|
1965
|
-
/**
|
|
1966
|
-
*
|
|
1792
|
+
* Filter slow logs whose application name contains this value.
|
|
1967
1793
|
* @type {string}
|
|
1968
1794
|
* @memberof ClusterLogApiQuerySlowLogTemplateSamples
|
|
1969
1795
|
*/
|
|
1970
1796
|
readonly appName?: string;
|
|
1971
|
-
/**
|
|
1972
|
-
*
|
|
1973
|
-
* @type {string}
|
|
1974
|
-
* @memberof ClusterLogApiQuerySlowLogTemplateSamples
|
|
1975
|
-
*/
|
|
1976
|
-
readonly appNameContains?: string;
|
|
1977
1797
|
/**
|
|
1978
1798
|
*
|
|
1979
1799
|
* @type {boolean}
|
|
@@ -2096,59 +1916,29 @@ export interface ClusterLogApiQuerySlowLogTemplatesRequest {
|
|
|
2096
1916
|
*/
|
|
2097
1917
|
readonly maxRowsSent?: number;
|
|
2098
1918
|
/**
|
|
2099
|
-
*
|
|
1919
|
+
* Filter slow logs whose database name contains this value.
|
|
2100
1920
|
* @type {string}
|
|
2101
1921
|
* @memberof ClusterLogApiQuerySlowLogTemplates
|
|
2102
1922
|
*/
|
|
2103
1923
|
readonly dbName?: string;
|
|
2104
1924
|
/**
|
|
2105
|
-
*
|
|
2106
|
-
* @type {string}
|
|
2107
|
-
* @memberof ClusterLogApiQuerySlowLogTemplates
|
|
2108
|
-
*/
|
|
2109
|
-
readonly dbNameContains?: string;
|
|
2110
|
-
/**
|
|
2111
|
-
*
|
|
1925
|
+
* Filter slow logs whose user name contains this value.
|
|
2112
1926
|
* @type {string}
|
|
2113
1927
|
* @memberof ClusterLogApiQuerySlowLogTemplates
|
|
2114
1928
|
*/
|
|
2115
1929
|
readonly userName?: string;
|
|
2116
1930
|
/**
|
|
2117
|
-
*
|
|
2118
|
-
* @type {string}
|
|
2119
|
-
* @memberof ClusterLogApiQuerySlowLogTemplates
|
|
2120
|
-
*/
|
|
2121
|
-
readonly userNameContains?: string;
|
|
2122
|
-
/**
|
|
2123
|
-
*
|
|
1931
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
2124
1932
|
* @type {string}
|
|
2125
1933
|
* @memberof ClusterLogApiQuerySlowLogTemplates
|
|
2126
1934
|
*/
|
|
2127
1935
|
readonly clientIp?: string;
|
|
2128
1936
|
/**
|
|
2129
|
-
*
|
|
2130
|
-
* @type {string}
|
|
2131
|
-
* @memberof ClusterLogApiQuerySlowLogTemplates
|
|
2132
|
-
*/
|
|
2133
|
-
readonly clientIpContains?: string;
|
|
2134
|
-
/**
|
|
2135
|
-
*
|
|
2136
|
-
* @type {string}
|
|
2137
|
-
* @memberof ClusterLogApiQuerySlowLogTemplates
|
|
2138
|
-
*/
|
|
2139
|
-
readonly clientIpCIDR?: string;
|
|
2140
|
-
/**
|
|
2141
|
-
*
|
|
1937
|
+
* Filter slow logs whose application name contains this value.
|
|
2142
1938
|
* @type {string}
|
|
2143
1939
|
* @memberof ClusterLogApiQuerySlowLogTemplates
|
|
2144
1940
|
*/
|
|
2145
1941
|
readonly appName?: string;
|
|
2146
|
-
/**
|
|
2147
|
-
*
|
|
2148
|
-
* @type {string}
|
|
2149
|
-
* @memberof ClusterLogApiQuerySlowLogTemplates
|
|
2150
|
-
*/
|
|
2151
|
-
readonly appNameContains?: string;
|
|
2152
1942
|
}
|
|
2153
1943
|
/**
|
|
2154
1944
|
* Request parameters for querySlowLogs operation in ClusterLogApi.
|
|
@@ -2259,59 +2049,29 @@ export interface ClusterLogApiQuerySlowLogsRequest {
|
|
|
2259
2049
|
*/
|
|
2260
2050
|
readonly maxRowsSent?: number;
|
|
2261
2051
|
/**
|
|
2262
|
-
*
|
|
2052
|
+
* Filter slow logs whose database name contains this value.
|
|
2263
2053
|
* @type {string}
|
|
2264
2054
|
* @memberof ClusterLogApiQuerySlowLogs
|
|
2265
2055
|
*/
|
|
2266
2056
|
readonly dbName?: string;
|
|
2267
2057
|
/**
|
|
2268
|
-
*
|
|
2269
|
-
* @type {string}
|
|
2270
|
-
* @memberof ClusterLogApiQuerySlowLogs
|
|
2271
|
-
*/
|
|
2272
|
-
readonly dbNameContains?: string;
|
|
2273
|
-
/**
|
|
2274
|
-
*
|
|
2058
|
+
* Filter slow logs whose user name contains this value.
|
|
2275
2059
|
* @type {string}
|
|
2276
2060
|
* @memberof ClusterLogApiQuerySlowLogs
|
|
2277
2061
|
*/
|
|
2278
2062
|
readonly userName?: string;
|
|
2279
2063
|
/**
|
|
2280
|
-
*
|
|
2281
|
-
* @type {string}
|
|
2282
|
-
* @memberof ClusterLogApiQuerySlowLogs
|
|
2283
|
-
*/
|
|
2284
|
-
readonly userNameContains?: string;
|
|
2285
|
-
/**
|
|
2286
|
-
*
|
|
2064
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
2287
2065
|
* @type {string}
|
|
2288
2066
|
* @memberof ClusterLogApiQuerySlowLogs
|
|
2289
2067
|
*/
|
|
2290
2068
|
readonly clientIp?: string;
|
|
2291
2069
|
/**
|
|
2292
|
-
*
|
|
2293
|
-
* @type {string}
|
|
2294
|
-
* @memberof ClusterLogApiQuerySlowLogs
|
|
2295
|
-
*/
|
|
2296
|
-
readonly clientIpContains?: string;
|
|
2297
|
-
/**
|
|
2298
|
-
*
|
|
2299
|
-
* @type {string}
|
|
2300
|
-
* @memberof ClusterLogApiQuerySlowLogs
|
|
2301
|
-
*/
|
|
2302
|
-
readonly clientIpCIDR?: string;
|
|
2303
|
-
/**
|
|
2304
|
-
*
|
|
2070
|
+
* Filter slow logs whose application name contains this value.
|
|
2305
2071
|
* @type {string}
|
|
2306
2072
|
* @memberof ClusterLogApiQuerySlowLogs
|
|
2307
2073
|
*/
|
|
2308
2074
|
readonly appName?: string;
|
|
2309
|
-
/**
|
|
2310
|
-
*
|
|
2311
|
-
* @type {string}
|
|
2312
|
-
* @memberof ClusterLogApiQuerySlowLogs
|
|
2313
|
-
*/
|
|
2314
|
-
readonly appNameContains?: string;
|
|
2315
2075
|
/**
|
|
2316
2076
|
*
|
|
2317
2077
|
* @type {string}
|