kb-cloud-client-typescript 2.3.0-alpha.108 → 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 +184 -272
- package/dist/adminapi/apis/cluster-log-api.d.ts.map +1 -1
- package/dist/adminapi/apis/cluster-log-api.js +140 -195
- package/dist/adminapi/apis/cluster-log-api.js.map +1 -1
- package/dist/adminapi/apis/shared-api.d.ts +184 -272
- package/dist/adminapi/apis/shared-api.d.ts.map +1 -1
- package/dist/adminapi/apis/shared-api.js +140 -195
- package/dist/adminapi/apis/shared-api.js.map +1 -1
- package/dist/openapi/apis/cluster-log-api.d.ts +198 -326
- package/dist/openapi/apis/cluster-log-api.d.ts.map +1 -1
- package/dist/openapi/apis/cluster-log-api.js +153 -233
- package/dist/openapi/apis/cluster-log-api.js.map +1 -1
- package/dist/openapi/apis/shared-api.d.ts +198 -326
- package/dist/openapi/apis/shared-api.d.ts.map +1 -1
- package/dist/openapi/apis/shared-api.js +153 -233
- package/dist/openapi/apis/shared-api.js.map +1 -1
- package/package.json +1 -6
- package/src/adminapi/apis/cluster-log-api.ts +272 -415
- package/src/adminapi/apis/shared-api.ts +272 -415
- package/src/adminapi.yaml +92 -100
- package/src/openapi/apis/cluster-log-api.ts +289 -497
- package/src/openapi/apis/shared-api.ts +289 -497
- package/src/openapi.yaml +96 -120
|
@@ -452,10 +452,24 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
452
452
|
* @param {SortType} [sortType]
|
|
453
453
|
* @param {string} [groupBy]
|
|
454
454
|
* @param {number} [topN]
|
|
455
|
+
* @param {number} [minExecutionTime] Minimum execution time in seconds. Decimal values are supported, for example 0.5.
|
|
456
|
+
* @param {number} [maxExecutionTime] Maximum execution time in seconds. Decimal values are supported, for example 0.5.
|
|
457
|
+
* @param {number} [minLockTime] Minimum lock time in seconds. Decimal values are supported, for example 0.001.
|
|
458
|
+
* @param {number} [maxLockTime] Maximum lock time in seconds. Decimal values are supported, for example 0.001.
|
|
459
|
+
* @param {number} [minRowsExamined]
|
|
460
|
+
* @param {number} [maxRowsExamined]
|
|
461
|
+
* @param {number} [minRowsSent]
|
|
462
|
+
* @param {number} [maxRowsSent]
|
|
463
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
464
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
465
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
466
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
467
|
+
* @param {string} [templateId]
|
|
468
|
+
* @param {boolean} [unclassifiedOnly]
|
|
455
469
|
* @param {*} [options] Override http request option.
|
|
456
470
|
* @throws {RequiredError}
|
|
457
471
|
*/
|
|
458
|
-
aggregateSlowLogs: async (orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, groupBy?: string, topN?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
472
|
+
aggregateSlowLogs: async (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> => {
|
|
459
473
|
// verify required parameter 'orgName' is not null or undefined
|
|
460
474
|
assertParamExists('aggregateSlowLogs', 'orgName', orgName)
|
|
461
475
|
// verify required parameter 'clusterName' is not null or undefined
|
|
@@ -521,6 +535,62 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
521
535
|
localVarQueryParameter['topN'] = topN;
|
|
522
536
|
}
|
|
523
537
|
|
|
538
|
+
if (minExecutionTime !== undefined) {
|
|
539
|
+
localVarQueryParameter['minExecutionTime'] = minExecutionTime;
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
if (maxExecutionTime !== undefined) {
|
|
543
|
+
localVarQueryParameter['maxExecutionTime'] = maxExecutionTime;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
if (minLockTime !== undefined) {
|
|
547
|
+
localVarQueryParameter['minLockTime'] = minLockTime;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
if (maxLockTime !== undefined) {
|
|
551
|
+
localVarQueryParameter['maxLockTime'] = maxLockTime;
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
if (minRowsExamined !== undefined) {
|
|
555
|
+
localVarQueryParameter['minRowsExamined'] = minRowsExamined;
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
if (maxRowsExamined !== undefined) {
|
|
559
|
+
localVarQueryParameter['maxRowsExamined'] = maxRowsExamined;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
if (minRowsSent !== undefined) {
|
|
563
|
+
localVarQueryParameter['minRowsSent'] = minRowsSent;
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
if (maxRowsSent !== undefined) {
|
|
567
|
+
localVarQueryParameter['maxRowsSent'] = maxRowsSent;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
if (dbName !== undefined) {
|
|
571
|
+
localVarQueryParameter['dbName'] = dbName;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
if (userName !== undefined) {
|
|
575
|
+
localVarQueryParameter['userName'] = userName;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
if (clientIp !== undefined) {
|
|
579
|
+
localVarQueryParameter['clientIp'] = clientIp;
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
if (appName !== undefined) {
|
|
583
|
+
localVarQueryParameter['appName'] = appName;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
if (templateId !== undefined) {
|
|
587
|
+
localVarQueryParameter['templateId'] = templateId;
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
if (unclassifiedOnly !== undefined) {
|
|
591
|
+
localVarQueryParameter['unclassifiedOnly'] = unclassifiedOnly;
|
|
592
|
+
}
|
|
593
|
+
|
|
524
594
|
|
|
525
595
|
|
|
526
596
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -5786,21 +5856,16 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
5786
5856
|
* @param {number} [maxRowsExamined]
|
|
5787
5857
|
* @param {number} [minRowsSent]
|
|
5788
5858
|
* @param {number} [maxRowsSent]
|
|
5789
|
-
* @param {string} [dbName]
|
|
5790
|
-
* @param {string} [
|
|
5791
|
-
* @param {string} [
|
|
5792
|
-
* @param {string} [
|
|
5793
|
-
* @param {string} [clientIp]
|
|
5794
|
-
* @param {string} [clientIpContains]
|
|
5795
|
-
* @param {string} [clientIpCIDR]
|
|
5796
|
-
* @param {string} [appName]
|
|
5797
|
-
* @param {string} [appNameContains]
|
|
5859
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
5860
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
5861
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
5862
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
5798
5863
|
* @param {string} [templateId]
|
|
5799
5864
|
* @param {boolean} [unclassifiedOnly]
|
|
5800
5865
|
* @param {*} [options] Override http request option.
|
|
5801
5866
|
* @throws {RequiredError}
|
|
5802
5867
|
*/
|
|
5803
|
-
getSlowLogStats: async (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,
|
|
5868
|
+
getSlowLogStats: async (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> => {
|
|
5804
5869
|
// verify required parameter 'orgName' is not null or undefined
|
|
5805
5870
|
assertParamExists('getSlowLogStats', 'orgName', orgName)
|
|
5806
5871
|
// verify required parameter 'clusterName' is not null or undefined
|
|
@@ -5886,38 +5951,18 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
5886
5951
|
localVarQueryParameter['dbName'] = dbName;
|
|
5887
5952
|
}
|
|
5888
5953
|
|
|
5889
|
-
if (dbNameContains !== undefined) {
|
|
5890
|
-
localVarQueryParameter['dbNameContains'] = dbNameContains;
|
|
5891
|
-
}
|
|
5892
|
-
|
|
5893
5954
|
if (userName !== undefined) {
|
|
5894
5955
|
localVarQueryParameter['userName'] = userName;
|
|
5895
5956
|
}
|
|
5896
5957
|
|
|
5897
|
-
if (userNameContains !== undefined) {
|
|
5898
|
-
localVarQueryParameter['userNameContains'] = userNameContains;
|
|
5899
|
-
}
|
|
5900
|
-
|
|
5901
5958
|
if (clientIp !== undefined) {
|
|
5902
5959
|
localVarQueryParameter['clientIp'] = clientIp;
|
|
5903
5960
|
}
|
|
5904
5961
|
|
|
5905
|
-
if (clientIpContains !== undefined) {
|
|
5906
|
-
localVarQueryParameter['clientIpContains'] = clientIpContains;
|
|
5907
|
-
}
|
|
5908
|
-
|
|
5909
|
-
if (clientIpCIDR !== undefined) {
|
|
5910
|
-
localVarQueryParameter['clientIpCIDR'] = clientIpCIDR;
|
|
5911
|
-
}
|
|
5912
|
-
|
|
5913
5962
|
if (appName !== undefined) {
|
|
5914
5963
|
localVarQueryParameter['appName'] = appName;
|
|
5915
5964
|
}
|
|
5916
5965
|
|
|
5917
|
-
if (appNameContains !== undefined) {
|
|
5918
|
-
localVarQueryParameter['appNameContains'] = appNameContains;
|
|
5919
|
-
}
|
|
5920
|
-
|
|
5921
5966
|
if (templateId !== undefined) {
|
|
5922
5967
|
localVarQueryParameter['templateId'] = templateId;
|
|
5923
5968
|
}
|
|
@@ -10231,21 +10276,16 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
10231
10276
|
* @param {number} [maxRowsExamined]
|
|
10232
10277
|
* @param {number} [minRowsSent]
|
|
10233
10278
|
* @param {number} [maxRowsSent]
|
|
10234
|
-
* @param {string} [dbName]
|
|
10235
|
-
* @param {string} [
|
|
10236
|
-
* @param {string} [
|
|
10237
|
-
* @param {string} [
|
|
10238
|
-
* @param {string} [clientIp]
|
|
10239
|
-
* @param {string} [clientIpContains]
|
|
10240
|
-
* @param {string} [clientIpCIDR]
|
|
10241
|
-
* @param {string} [appName]
|
|
10242
|
-
* @param {string} [appNameContains]
|
|
10279
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
10280
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
10281
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
10282
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
10243
10283
|
* @param {string} [templateId]
|
|
10244
10284
|
* @param {boolean} [unclassifiedOnly]
|
|
10245
10285
|
* @param {*} [options] Override http request option.
|
|
10246
10286
|
* @throws {RequiredError}
|
|
10247
10287
|
*/
|
|
10248
|
-
queryLogHits: async (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,
|
|
10288
|
+
queryLogHits: async (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> => {
|
|
10249
10289
|
// verify required parameter 'orgName' is not null or undefined
|
|
10250
10290
|
assertParamExists('queryLogHits', 'orgName', orgName)
|
|
10251
10291
|
// verify required parameter 'clusterName' is not null or undefined
|
|
@@ -10343,38 +10383,18 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
10343
10383
|
localVarQueryParameter['dbName'] = dbName;
|
|
10344
10384
|
}
|
|
10345
10385
|
|
|
10346
|
-
if (dbNameContains !== undefined) {
|
|
10347
|
-
localVarQueryParameter['dbNameContains'] = dbNameContains;
|
|
10348
|
-
}
|
|
10349
|
-
|
|
10350
10386
|
if (userName !== undefined) {
|
|
10351
10387
|
localVarQueryParameter['userName'] = userName;
|
|
10352
10388
|
}
|
|
10353
10389
|
|
|
10354
|
-
if (userNameContains !== undefined) {
|
|
10355
|
-
localVarQueryParameter['userNameContains'] = userNameContains;
|
|
10356
|
-
}
|
|
10357
|
-
|
|
10358
10390
|
if (clientIp !== undefined) {
|
|
10359
10391
|
localVarQueryParameter['clientIp'] = clientIp;
|
|
10360
10392
|
}
|
|
10361
10393
|
|
|
10362
|
-
if (clientIpContains !== undefined) {
|
|
10363
|
-
localVarQueryParameter['clientIpContains'] = clientIpContains;
|
|
10364
|
-
}
|
|
10365
|
-
|
|
10366
|
-
if (clientIpCIDR !== undefined) {
|
|
10367
|
-
localVarQueryParameter['clientIpCIDR'] = clientIpCIDR;
|
|
10368
|
-
}
|
|
10369
|
-
|
|
10370
10394
|
if (appName !== undefined) {
|
|
10371
10395
|
localVarQueryParameter['appName'] = appName;
|
|
10372
10396
|
}
|
|
10373
10397
|
|
|
10374
|
-
if (appNameContains !== undefined) {
|
|
10375
|
-
localVarQueryParameter['appNameContains'] = appNameContains;
|
|
10376
|
-
}
|
|
10377
|
-
|
|
10378
10398
|
if (templateId !== undefined) {
|
|
10379
10399
|
localVarQueryParameter['templateId'] = templateId;
|
|
10380
10400
|
}
|
|
@@ -10588,20 +10608,15 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
10588
10608
|
* @param {number} [maxRowsExamined]
|
|
10589
10609
|
* @param {number} [minRowsSent]
|
|
10590
10610
|
* @param {number} [maxRowsSent]
|
|
10591
|
-
* @param {string} [dbName]
|
|
10592
|
-
* @param {string} [
|
|
10593
|
-
* @param {string} [
|
|
10594
|
-
* @param {string} [
|
|
10595
|
-
* @param {string} [clientIp]
|
|
10596
|
-
* @param {string} [clientIpContains]
|
|
10597
|
-
* @param {string} [clientIpCIDR]
|
|
10598
|
-
* @param {string} [appName]
|
|
10599
|
-
* @param {string} [appNameContains]
|
|
10611
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
10612
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
10613
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
10614
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
10600
10615
|
* @param {boolean} [unclassifiedOnly]
|
|
10601
10616
|
* @param {*} [options] Override http request option.
|
|
10602
10617
|
* @throws {RequiredError}
|
|
10603
10618
|
*/
|
|
10604
|
-
querySlowLogTemplateSamples: async (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,
|
|
10619
|
+
querySlowLogTemplateSamples: async (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> => {
|
|
10605
10620
|
// verify required parameter 'orgName' is not null or undefined
|
|
10606
10621
|
assertParamExists('querySlowLogTemplateSamples', 'orgName', orgName)
|
|
10607
10622
|
// verify required parameter 'clusterName' is not null or undefined
|
|
@@ -10698,38 +10713,18 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
10698
10713
|
localVarQueryParameter['dbName'] = dbName;
|
|
10699
10714
|
}
|
|
10700
10715
|
|
|
10701
|
-
if (dbNameContains !== undefined) {
|
|
10702
|
-
localVarQueryParameter['dbNameContains'] = dbNameContains;
|
|
10703
|
-
}
|
|
10704
|
-
|
|
10705
10716
|
if (userName !== undefined) {
|
|
10706
10717
|
localVarQueryParameter['userName'] = userName;
|
|
10707
10718
|
}
|
|
10708
10719
|
|
|
10709
|
-
if (userNameContains !== undefined) {
|
|
10710
|
-
localVarQueryParameter['userNameContains'] = userNameContains;
|
|
10711
|
-
}
|
|
10712
|
-
|
|
10713
10720
|
if (clientIp !== undefined) {
|
|
10714
10721
|
localVarQueryParameter['clientIp'] = clientIp;
|
|
10715
10722
|
}
|
|
10716
10723
|
|
|
10717
|
-
if (clientIpContains !== undefined) {
|
|
10718
|
-
localVarQueryParameter['clientIpContains'] = clientIpContains;
|
|
10719
|
-
}
|
|
10720
|
-
|
|
10721
|
-
if (clientIpCIDR !== undefined) {
|
|
10722
|
-
localVarQueryParameter['clientIpCIDR'] = clientIpCIDR;
|
|
10723
|
-
}
|
|
10724
|
-
|
|
10725
10724
|
if (appName !== undefined) {
|
|
10726
10725
|
localVarQueryParameter['appName'] = appName;
|
|
10727
10726
|
}
|
|
10728
10727
|
|
|
10729
|
-
if (appNameContains !== undefined) {
|
|
10730
|
-
localVarQueryParameter['appNameContains'] = appNameContains;
|
|
10731
|
-
}
|
|
10732
|
-
|
|
10733
10728
|
if (unclassifiedOnly !== undefined) {
|
|
10734
10729
|
localVarQueryParameter['unclassifiedOnly'] = unclassifiedOnly;
|
|
10735
10730
|
}
|
|
@@ -10766,19 +10761,14 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
10766
10761
|
* @param {number} [maxRowsExamined]
|
|
10767
10762
|
* @param {number} [minRowsSent]
|
|
10768
10763
|
* @param {number} [maxRowsSent]
|
|
10769
|
-
* @param {string} [dbName]
|
|
10770
|
-
* @param {string} [
|
|
10771
|
-
* @param {string} [
|
|
10772
|
-
* @param {string} [
|
|
10773
|
-
* @param {string} [clientIp]
|
|
10774
|
-
* @param {string} [clientIpContains]
|
|
10775
|
-
* @param {string} [clientIpCIDR]
|
|
10776
|
-
* @param {string} [appName]
|
|
10777
|
-
* @param {string} [appNameContains]
|
|
10764
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
10765
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
10766
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
10767
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
10778
10768
|
* @param {*} [options] Override http request option.
|
|
10779
10769
|
* @throws {RequiredError}
|
|
10780
10770
|
*/
|
|
10781
|
-
querySlowLogTemplates: async (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,
|
|
10771
|
+
querySlowLogTemplates: async (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> => {
|
|
10782
10772
|
// verify required parameter 'orgName' is not null or undefined
|
|
10783
10773
|
assertParamExists('querySlowLogTemplates', 'orgName', orgName)
|
|
10784
10774
|
// verify required parameter 'clusterName' is not null or undefined
|
|
@@ -10876,38 +10866,18 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
10876
10866
|
localVarQueryParameter['dbName'] = dbName;
|
|
10877
10867
|
}
|
|
10878
10868
|
|
|
10879
|
-
if (dbNameContains !== undefined) {
|
|
10880
|
-
localVarQueryParameter['dbNameContains'] = dbNameContains;
|
|
10881
|
-
}
|
|
10882
|
-
|
|
10883
10869
|
if (userName !== undefined) {
|
|
10884
10870
|
localVarQueryParameter['userName'] = userName;
|
|
10885
10871
|
}
|
|
10886
10872
|
|
|
10887
|
-
if (userNameContains !== undefined) {
|
|
10888
|
-
localVarQueryParameter['userNameContains'] = userNameContains;
|
|
10889
|
-
}
|
|
10890
|
-
|
|
10891
10873
|
if (clientIp !== undefined) {
|
|
10892
10874
|
localVarQueryParameter['clientIp'] = clientIp;
|
|
10893
10875
|
}
|
|
10894
10876
|
|
|
10895
|
-
if (clientIpContains !== undefined) {
|
|
10896
|
-
localVarQueryParameter['clientIpContains'] = clientIpContains;
|
|
10897
|
-
}
|
|
10898
|
-
|
|
10899
|
-
if (clientIpCIDR !== undefined) {
|
|
10900
|
-
localVarQueryParameter['clientIpCIDR'] = clientIpCIDR;
|
|
10901
|
-
}
|
|
10902
|
-
|
|
10903
10877
|
if (appName !== undefined) {
|
|
10904
10878
|
localVarQueryParameter['appName'] = appName;
|
|
10905
10879
|
}
|
|
10906
10880
|
|
|
10907
|
-
if (appNameContains !== undefined) {
|
|
10908
|
-
localVarQueryParameter['appNameContains'] = appNameContains;
|
|
10909
|
-
}
|
|
10910
|
-
|
|
10911
10881
|
|
|
10912
10882
|
|
|
10913
10883
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -10939,21 +10909,16 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
10939
10909
|
* @param {number} [maxRowsExamined]
|
|
10940
10910
|
* @param {number} [minRowsSent]
|
|
10941
10911
|
* @param {number} [maxRowsSent]
|
|
10942
|
-
* @param {string} [dbName]
|
|
10943
|
-
* @param {string} [
|
|
10944
|
-
* @param {string} [
|
|
10945
|
-
* @param {string} [
|
|
10946
|
-
* @param {string} [clientIp]
|
|
10947
|
-
* @param {string} [clientIpContains]
|
|
10948
|
-
* @param {string} [clientIpCIDR]
|
|
10949
|
-
* @param {string} [appName]
|
|
10950
|
-
* @param {string} [appNameContains]
|
|
10912
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
10913
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
10914
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
10915
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
10951
10916
|
* @param {string} [templateId]
|
|
10952
10917
|
* @param {boolean} [unclassifiedOnly]
|
|
10953
10918
|
* @param {*} [options] Override http request option.
|
|
10954
10919
|
* @throws {RequiredError}
|
|
10955
10920
|
*/
|
|
10956
|
-
querySlowLogs: async (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,
|
|
10921
|
+
querySlowLogs: async (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> => {
|
|
10957
10922
|
// verify required parameter 'orgName' is not null or undefined
|
|
10958
10923
|
assertParamExists('querySlowLogs', 'orgName', orgName)
|
|
10959
10924
|
// verify required parameter 'clusterName' is not null or undefined
|
|
@@ -11047,38 +11012,18 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
11047
11012
|
localVarQueryParameter['dbName'] = dbName;
|
|
11048
11013
|
}
|
|
11049
11014
|
|
|
11050
|
-
if (dbNameContains !== undefined) {
|
|
11051
|
-
localVarQueryParameter['dbNameContains'] = dbNameContains;
|
|
11052
|
-
}
|
|
11053
|
-
|
|
11054
11015
|
if (userName !== undefined) {
|
|
11055
11016
|
localVarQueryParameter['userName'] = userName;
|
|
11056
11017
|
}
|
|
11057
11018
|
|
|
11058
|
-
if (userNameContains !== undefined) {
|
|
11059
|
-
localVarQueryParameter['userNameContains'] = userNameContains;
|
|
11060
|
-
}
|
|
11061
|
-
|
|
11062
11019
|
if (clientIp !== undefined) {
|
|
11063
11020
|
localVarQueryParameter['clientIp'] = clientIp;
|
|
11064
11021
|
}
|
|
11065
11022
|
|
|
11066
|
-
if (clientIpContains !== undefined) {
|
|
11067
|
-
localVarQueryParameter['clientIpContains'] = clientIpContains;
|
|
11068
|
-
}
|
|
11069
|
-
|
|
11070
|
-
if (clientIpCIDR !== undefined) {
|
|
11071
|
-
localVarQueryParameter['clientIpCIDR'] = clientIpCIDR;
|
|
11072
|
-
}
|
|
11073
|
-
|
|
11074
11023
|
if (appName !== undefined) {
|
|
11075
11024
|
localVarQueryParameter['appName'] = appName;
|
|
11076
11025
|
}
|
|
11077
11026
|
|
|
11078
|
-
if (appNameContains !== undefined) {
|
|
11079
|
-
localVarQueryParameter['appNameContains'] = appNameContains;
|
|
11080
|
-
}
|
|
11081
|
-
|
|
11082
11027
|
if (templateId !== undefined) {
|
|
11083
11028
|
localVarQueryParameter['templateId'] = templateId;
|
|
11084
11029
|
}
|
|
@@ -13445,11 +13390,25 @@ export const SharedApiFp = function(configuration?: Configuration) {
|
|
|
13445
13390
|
* @param {SortType} [sortType]
|
|
13446
13391
|
* @param {string} [groupBy]
|
|
13447
13392
|
* @param {number} [topN]
|
|
13393
|
+
* @param {number} [minExecutionTime] Minimum execution time in seconds. Decimal values are supported, for example 0.5.
|
|
13394
|
+
* @param {number} [maxExecutionTime] Maximum execution time in seconds. Decimal values are supported, for example 0.5.
|
|
13395
|
+
* @param {number} [minLockTime] Minimum lock time in seconds. Decimal values are supported, for example 0.001.
|
|
13396
|
+
* @param {number} [maxLockTime] Maximum lock time in seconds. Decimal values are supported, for example 0.001.
|
|
13397
|
+
* @param {number} [minRowsExamined]
|
|
13398
|
+
* @param {number} [maxRowsExamined]
|
|
13399
|
+
* @param {number} [minRowsSent]
|
|
13400
|
+
* @param {number} [maxRowsSent]
|
|
13401
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
13402
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
13403
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
13404
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
13405
|
+
* @param {string} [templateId]
|
|
13406
|
+
* @param {boolean} [unclassifiedOnly]
|
|
13448
13407
|
* @param {*} [options] Override http request option.
|
|
13449
13408
|
* @throws {RequiredError}
|
|
13450
13409
|
*/
|
|
13451
|
-
async aggregateSlowLogs(orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, groupBy?: string, topN?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterExecutionLogAggregateResponse>> {
|
|
13452
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.aggregateSlowLogs(orgName, clusterName, startTime, endTime, componentName, instanceName, query, limit, sortType, groupBy, topN, options);
|
|
13410
|
+
async 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>> {
|
|
13411
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.aggregateSlowLogs(orgName, clusterName, startTime, endTime, componentName, instanceName, query, limit, sortType, groupBy, topN, minExecutionTime, maxExecutionTime, minLockTime, maxLockTime, minRowsExamined, maxRowsExamined, minRowsSent, maxRowsSent, dbName, userName, clientIp, appName, templateId, unclassifiedOnly, options);
|
|
13453
13412
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
13454
13413
|
const localVarOperationServerBasePath = operationServerMap['SharedApi.aggregateSlowLogs']?.[localVarOperationServerIndex]?.url;
|
|
13455
13414
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -15031,22 +14990,17 @@ export const SharedApiFp = function(configuration?: Configuration) {
|
|
|
15031
14990
|
* @param {number} [maxRowsExamined]
|
|
15032
14991
|
* @param {number} [minRowsSent]
|
|
15033
14992
|
* @param {number} [maxRowsSent]
|
|
15034
|
-
* @param {string} [dbName]
|
|
15035
|
-
* @param {string} [
|
|
15036
|
-
* @param {string} [
|
|
15037
|
-
* @param {string} [
|
|
15038
|
-
* @param {string} [clientIp]
|
|
15039
|
-
* @param {string} [clientIpContains]
|
|
15040
|
-
* @param {string} [clientIpCIDR]
|
|
15041
|
-
* @param {string} [appName]
|
|
15042
|
-
* @param {string} [appNameContains]
|
|
14993
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
14994
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
14995
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
14996
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
15043
14997
|
* @param {string} [templateId]
|
|
15044
14998
|
* @param {boolean} [unclassifiedOnly]
|
|
15045
14999
|
* @param {*} [options] Override http request option.
|
|
15046
15000
|
* @throws {RequiredError}
|
|
15047
15001
|
*/
|
|
15048
|
-
async 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,
|
|
15049
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getSlowLogStats(orgName, clusterName, startTime, endTime, componentName, instanceName, query, minExecutionTime, maxExecutionTime, minLockTime, maxLockTime, minRowsExamined, maxRowsExamined, minRowsSent, maxRowsSent, dbName,
|
|
15002
|
+
async 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>> {
|
|
15003
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getSlowLogStats(orgName, clusterName, startTime, endTime, componentName, instanceName, query, minExecutionTime, maxExecutionTime, minLockTime, maxLockTime, minRowsExamined, maxRowsExamined, minRowsSent, maxRowsSent, dbName, userName, clientIp, appName, templateId, unclassifiedOnly, options);
|
|
15050
15004
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
15051
15005
|
const localVarOperationServerBasePath = operationServerMap['SharedApi.getSlowLogStats']?.[localVarOperationServerIndex]?.url;
|
|
15052
15006
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -16328,22 +16282,17 @@ export const SharedApiFp = function(configuration?: Configuration) {
|
|
|
16328
16282
|
* @param {number} [maxRowsExamined]
|
|
16329
16283
|
* @param {number} [minRowsSent]
|
|
16330
16284
|
* @param {number} [maxRowsSent]
|
|
16331
|
-
* @param {string} [dbName]
|
|
16332
|
-
* @param {string} [
|
|
16333
|
-
* @param {string} [
|
|
16334
|
-
* @param {string} [
|
|
16335
|
-
* @param {string} [clientIp]
|
|
16336
|
-
* @param {string} [clientIpContains]
|
|
16337
|
-
* @param {string} [clientIpCIDR]
|
|
16338
|
-
* @param {string} [appName]
|
|
16339
|
-
* @param {string} [appNameContains]
|
|
16285
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
16286
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
16287
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
16288
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
16340
16289
|
* @param {string} [templateId]
|
|
16341
16290
|
* @param {boolean} [unclassifiedOnly]
|
|
16342
16291
|
* @param {*} [options] Override http request option.
|
|
16343
16292
|
* @throws {RequiredError}
|
|
16344
16293
|
*/
|
|
16345
|
-
async 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,
|
|
16346
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.queryLogHits(orgName, clusterName, startTime, endTime, step, logType, componentName, instanceName, query, minExecutionTime, maxExecutionTime, minLockTime, maxLockTime, minRowsExamined, maxRowsExamined, minRowsSent, maxRowsSent, dbName,
|
|
16294
|
+
async 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>> {
|
|
16295
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.queryLogHits(orgName, clusterName, startTime, endTime, step, logType, componentName, instanceName, query, minExecutionTime, maxExecutionTime, minLockTime, maxLockTime, minRowsExamined, maxRowsExamined, minRowsSent, maxRowsSent, dbName, userName, clientIp, appName, templateId, unclassifiedOnly, options);
|
|
16347
16296
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
16348
16297
|
const localVarOperationServerBasePath = operationServerMap['SharedApi.queryLogHits']?.[localVarOperationServerIndex]?.url;
|
|
16349
16298
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -16412,21 +16361,16 @@ export const SharedApiFp = function(configuration?: Configuration) {
|
|
|
16412
16361
|
* @param {number} [maxRowsExamined]
|
|
16413
16362
|
* @param {number} [minRowsSent]
|
|
16414
16363
|
* @param {number} [maxRowsSent]
|
|
16415
|
-
* @param {string} [dbName]
|
|
16416
|
-
* @param {string} [
|
|
16417
|
-
* @param {string} [
|
|
16418
|
-
* @param {string} [
|
|
16419
|
-
* @param {string} [clientIp]
|
|
16420
|
-
* @param {string} [clientIpContains]
|
|
16421
|
-
* @param {string} [clientIpCIDR]
|
|
16422
|
-
* @param {string} [appName]
|
|
16423
|
-
* @param {string} [appNameContains]
|
|
16364
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
16365
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
16366
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
16367
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
16424
16368
|
* @param {boolean} [unclassifiedOnly]
|
|
16425
16369
|
* @param {*} [options] Override http request option.
|
|
16426
16370
|
* @throws {RequiredError}
|
|
16427
16371
|
*/
|
|
16428
|
-
async 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,
|
|
16429
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.querySlowLogTemplateSamples(orgName, clusterName, templateId, startTime, endTime, componentName, instanceName, query, limit, sortType, minExecutionTime, maxExecutionTime, minLockTime, maxLockTime, minRowsExamined, maxRowsExamined, minRowsSent, maxRowsSent, dbName,
|
|
16372
|
+
async 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>> {
|
|
16373
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.querySlowLogTemplateSamples(orgName, clusterName, templateId, startTime, endTime, componentName, instanceName, query, limit, sortType, minExecutionTime, maxExecutionTime, minLockTime, maxLockTime, minRowsExamined, maxRowsExamined, minRowsSent, maxRowsSent, dbName, userName, clientIp, appName, unclassifiedOnly, options);
|
|
16430
16374
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
16431
16375
|
const localVarOperationServerBasePath = operationServerMap['SharedApi.querySlowLogTemplateSamples']?.[localVarOperationServerIndex]?.url;
|
|
16432
16376
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -16452,20 +16396,15 @@ export const SharedApiFp = function(configuration?: Configuration) {
|
|
|
16452
16396
|
* @param {number} [maxRowsExamined]
|
|
16453
16397
|
* @param {number} [minRowsSent]
|
|
16454
16398
|
* @param {number} [maxRowsSent]
|
|
16455
|
-
* @param {string} [dbName]
|
|
16456
|
-
* @param {string} [
|
|
16457
|
-
* @param {string} [
|
|
16458
|
-
* @param {string} [
|
|
16459
|
-
* @param {string} [clientIp]
|
|
16460
|
-
* @param {string} [clientIpContains]
|
|
16461
|
-
* @param {string} [clientIpCIDR]
|
|
16462
|
-
* @param {string} [appName]
|
|
16463
|
-
* @param {string} [appNameContains]
|
|
16399
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
16400
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
16401
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
16402
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
16464
16403
|
* @param {*} [options] Override http request option.
|
|
16465
16404
|
* @throws {RequiredError}
|
|
16466
16405
|
*/
|
|
16467
|
-
async 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,
|
|
16468
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.querySlowLogTemplates(orgName, clusterName, startTime, endTime, componentName, instanceName, query, topN, sortBy, sortType, minExecutionTime, maxExecutionTime, minLockTime, maxLockTime, minRowsExamined, maxRowsExamined, minRowsSent, maxRowsSent, dbName,
|
|
16406
|
+
async 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>> {
|
|
16407
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.querySlowLogTemplates(orgName, clusterName, startTime, endTime, componentName, instanceName, query, topN, sortBy, sortType, minExecutionTime, maxExecutionTime, minLockTime, maxLockTime, minRowsExamined, maxRowsExamined, minRowsSent, maxRowsSent, dbName, userName, clientIp, appName, options);
|
|
16469
16408
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
16470
16409
|
const localVarOperationServerBasePath = operationServerMap['SharedApi.querySlowLogTemplates']?.[localVarOperationServerIndex]?.url;
|
|
16471
16410
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -16490,22 +16429,17 @@ export const SharedApiFp = function(configuration?: Configuration) {
|
|
|
16490
16429
|
* @param {number} [maxRowsExamined]
|
|
16491
16430
|
* @param {number} [minRowsSent]
|
|
16492
16431
|
* @param {number} [maxRowsSent]
|
|
16493
|
-
* @param {string} [dbName]
|
|
16494
|
-
* @param {string} [
|
|
16495
|
-
* @param {string} [
|
|
16496
|
-
* @param {string} [
|
|
16497
|
-
* @param {string} [clientIp]
|
|
16498
|
-
* @param {string} [clientIpContains]
|
|
16499
|
-
* @param {string} [clientIpCIDR]
|
|
16500
|
-
* @param {string} [appName]
|
|
16501
|
-
* @param {string} [appNameContains]
|
|
16432
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
16433
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
16434
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
16435
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
16502
16436
|
* @param {string} [templateId]
|
|
16503
16437
|
* @param {boolean} [unclassifiedOnly]
|
|
16504
16438
|
* @param {*} [options] Override http request option.
|
|
16505
16439
|
* @throws {RequiredError}
|
|
16506
16440
|
*/
|
|
16507
|
-
async 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,
|
|
16508
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.querySlowLogs(orgName, clusterName, startTime, endTime, componentName, instanceName, query, limit, sortType, minExecutionTime, maxExecutionTime, minLockTime, maxLockTime, minRowsExamined, maxRowsExamined, minRowsSent, maxRowsSent, dbName,
|
|
16441
|
+
async 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>> {
|
|
16442
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.querySlowLogs(orgName, clusterName, startTime, endTime, componentName, instanceName, query, limit, sortType, minExecutionTime, maxExecutionTime, minLockTime, maxLockTime, minRowsExamined, maxRowsExamined, minRowsSent, maxRowsSent, dbName, userName, clientIp, appName, templateId, unclassifiedOnly, options);
|
|
16509
16443
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
16510
16444
|
const localVarOperationServerBasePath = operationServerMap['SharedApi.querySlowLogs']?.[localVarOperationServerIndex]?.url;
|
|
16511
16445
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -17223,7 +17157,7 @@ export const SharedApiFactory = function (configuration?: Configuration, basePat
|
|
|
17223
17157
|
* @throws {RequiredError}
|
|
17224
17158
|
*/
|
|
17225
17159
|
aggregateSlowLogs(requestParameters: SharedApiAggregateSlowLogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterExecutionLogAggregateResponse> {
|
|
17226
|
-
return localVarFp.aggregateSlowLogs(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.limit, requestParameters.sortType, requestParameters.groupBy, requestParameters.topN, options).then((request) => request(axios, basePath));
|
|
17160
|
+
return localVarFp.aggregateSlowLogs(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.limit, requestParameters.sortType, requestParameters.groupBy, requestParameters.topN, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.userName, requestParameters.clientIp, requestParameters.appName, requestParameters.templateId, requestParameters.unclassifiedOnly, options).then((request) => request(axios, basePath));
|
|
17227
17161
|
},
|
|
17228
17162
|
/**
|
|
17229
17163
|
* alert statistic
|
|
@@ -18263,7 +18197,7 @@ export const SharedApiFactory = function (configuration?: Configuration, basePat
|
|
|
18263
18197
|
* @throws {RequiredError}
|
|
18264
18198
|
*/
|
|
18265
18199
|
getSlowLogStats(requestParameters: SharedApiGetSlowLogStatsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterSlowLogStats> {
|
|
18266
|
-
return localVarFp.getSlowLogStats(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.
|
|
18200
|
+
return localVarFp.getSlowLogStats(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.userName, requestParameters.clientIp, requestParameters.appName, requestParameters.templateId, requestParameters.unclassifiedOnly, options).then((request) => request(axios, basePath));
|
|
18267
18201
|
},
|
|
18268
18202
|
/**
|
|
18269
18203
|
* Get a slow log template of a cluster (VictoriaLogs backend only)
|
|
@@ -19099,7 +19033,7 @@ export const SharedApiFactory = function (configuration?: Configuration, basePat
|
|
|
19099
19033
|
* @throws {RequiredError}
|
|
19100
19034
|
*/
|
|
19101
19035
|
queryLogHits(requestParameters: SharedApiQueryLogHitsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterLogHitsResponse> {
|
|
19102
|
-
return localVarFp.queryLogHits(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.step, requestParameters.logType, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.
|
|
19036
|
+
return localVarFp.queryLogHits(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.step, requestParameters.logType, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.userName, requestParameters.clientIp, requestParameters.appName, requestParameters.templateId, requestParameters.unclassifiedOnly, options).then((request) => request(axios, basePath));
|
|
19103
19037
|
},
|
|
19104
19038
|
/**
|
|
19105
19039
|
* Query pod logs of a cluster
|
|
@@ -19129,7 +19063,7 @@ export const SharedApiFactory = function (configuration?: Configuration, basePat
|
|
|
19129
19063
|
* @throws {RequiredError}
|
|
19130
19064
|
*/
|
|
19131
19065
|
querySlowLogTemplateSamples(requestParameters: SharedApiQuerySlowLogTemplateSamplesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterExecutionLog> {
|
|
19132
|
-
return localVarFp.querySlowLogTemplateSamples(requestParameters.orgName, requestParameters.clusterName, requestParameters.templateId, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.limit, requestParameters.sortType, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.
|
|
19066
|
+
return localVarFp.querySlowLogTemplateSamples(requestParameters.orgName, requestParameters.clusterName, requestParameters.templateId, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.limit, requestParameters.sortType, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.userName, requestParameters.clientIp, requestParameters.appName, requestParameters.unclassifiedOnly, options).then((request) => request(axios, basePath));
|
|
19133
19067
|
},
|
|
19134
19068
|
/**
|
|
19135
19069
|
* Query slow log templates of a cluster (VictoriaLogs backend only)
|
|
@@ -19139,7 +19073,7 @@ export const SharedApiFactory = function (configuration?: Configuration, basePat
|
|
|
19139
19073
|
* @throws {RequiredError}
|
|
19140
19074
|
*/
|
|
19141
19075
|
querySlowLogTemplates(requestParameters: SharedApiQuerySlowLogTemplatesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterSlowLogTemplateList> {
|
|
19142
|
-
return localVarFp.querySlowLogTemplates(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.topN, requestParameters.sortBy, requestParameters.sortType, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.
|
|
19076
|
+
return localVarFp.querySlowLogTemplates(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.topN, requestParameters.sortBy, requestParameters.sortType, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.userName, requestParameters.clientIp, requestParameters.appName, options).then((request) => request(axios, basePath));
|
|
19143
19077
|
},
|
|
19144
19078
|
/**
|
|
19145
19079
|
* Query slow logs of a cluster
|
|
@@ -19149,7 +19083,7 @@ export const SharedApiFactory = function (configuration?: Configuration, basePat
|
|
|
19149
19083
|
* @throws {RequiredError}
|
|
19150
19084
|
*/
|
|
19151
19085
|
querySlowLogs(requestParameters: SharedApiQuerySlowLogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterExecutionLog> {
|
|
19152
|
-
return localVarFp.querySlowLogs(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.limit, requestParameters.sortType, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.
|
|
19086
|
+
return localVarFp.querySlowLogs(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.limit, requestParameters.sortType, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.userName, requestParameters.clientIp, requestParameters.appName, requestParameters.templateId, requestParameters.unclassifiedOnly, options).then((request) => request(axios, basePath));
|
|
19153
19087
|
},
|
|
19154
19088
|
/**
|
|
19155
19089
|
* Get feature
|
|
@@ -22107,6 +22041,104 @@ export interface SharedApiAggregateSlowLogsRequest {
|
|
|
22107
22041
|
* @memberof SharedApiAggregateSlowLogs
|
|
22108
22042
|
*/
|
|
22109
22043
|
readonly topN?: number
|
|
22044
|
+
|
|
22045
|
+
/**
|
|
22046
|
+
* Minimum execution time in seconds. Decimal values are supported, for example 0.5.
|
|
22047
|
+
* @type {number}
|
|
22048
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
22049
|
+
*/
|
|
22050
|
+
readonly minExecutionTime?: number
|
|
22051
|
+
|
|
22052
|
+
/**
|
|
22053
|
+
* Maximum execution time in seconds. Decimal values are supported, for example 0.5.
|
|
22054
|
+
* @type {number}
|
|
22055
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
22056
|
+
*/
|
|
22057
|
+
readonly maxExecutionTime?: number
|
|
22058
|
+
|
|
22059
|
+
/**
|
|
22060
|
+
* Minimum lock time in seconds. Decimal values are supported, for example 0.001.
|
|
22061
|
+
* @type {number}
|
|
22062
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
22063
|
+
*/
|
|
22064
|
+
readonly minLockTime?: number
|
|
22065
|
+
|
|
22066
|
+
/**
|
|
22067
|
+
* Maximum lock time in seconds. Decimal values are supported, for example 0.001.
|
|
22068
|
+
* @type {number}
|
|
22069
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
22070
|
+
*/
|
|
22071
|
+
readonly maxLockTime?: number
|
|
22072
|
+
|
|
22073
|
+
/**
|
|
22074
|
+
*
|
|
22075
|
+
* @type {number}
|
|
22076
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
22077
|
+
*/
|
|
22078
|
+
readonly minRowsExamined?: number
|
|
22079
|
+
|
|
22080
|
+
/**
|
|
22081
|
+
*
|
|
22082
|
+
* @type {number}
|
|
22083
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
22084
|
+
*/
|
|
22085
|
+
readonly maxRowsExamined?: number
|
|
22086
|
+
|
|
22087
|
+
/**
|
|
22088
|
+
*
|
|
22089
|
+
* @type {number}
|
|
22090
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
22091
|
+
*/
|
|
22092
|
+
readonly minRowsSent?: number
|
|
22093
|
+
|
|
22094
|
+
/**
|
|
22095
|
+
*
|
|
22096
|
+
* @type {number}
|
|
22097
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
22098
|
+
*/
|
|
22099
|
+
readonly maxRowsSent?: number
|
|
22100
|
+
|
|
22101
|
+
/**
|
|
22102
|
+
* Filter slow logs whose database name contains this value.
|
|
22103
|
+
* @type {string}
|
|
22104
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
22105
|
+
*/
|
|
22106
|
+
readonly dbName?: string
|
|
22107
|
+
|
|
22108
|
+
/**
|
|
22109
|
+
* Filter slow logs whose user name contains this value.
|
|
22110
|
+
* @type {string}
|
|
22111
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
22112
|
+
*/
|
|
22113
|
+
readonly userName?: string
|
|
22114
|
+
|
|
22115
|
+
/**
|
|
22116
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
22117
|
+
* @type {string}
|
|
22118
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
22119
|
+
*/
|
|
22120
|
+
readonly clientIp?: string
|
|
22121
|
+
|
|
22122
|
+
/**
|
|
22123
|
+
* Filter slow logs whose application name contains this value.
|
|
22124
|
+
* @type {string}
|
|
22125
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
22126
|
+
*/
|
|
22127
|
+
readonly appName?: string
|
|
22128
|
+
|
|
22129
|
+
/**
|
|
22130
|
+
*
|
|
22131
|
+
* @type {string}
|
|
22132
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
22133
|
+
*/
|
|
22134
|
+
readonly templateId?: string
|
|
22135
|
+
|
|
22136
|
+
/**
|
|
22137
|
+
*
|
|
22138
|
+
* @type {boolean}
|
|
22139
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
22140
|
+
*/
|
|
22141
|
+
readonly unclassifiedOnly?: boolean
|
|
22110
22142
|
}
|
|
22111
22143
|
|
|
22112
22144
|
/**
|
|
@@ -25189,68 +25221,33 @@ export interface SharedApiGetSlowLogStatsRequest {
|
|
|
25189
25221
|
readonly maxRowsSent?: number
|
|
25190
25222
|
|
|
25191
25223
|
/**
|
|
25192
|
-
*
|
|
25224
|
+
* Filter slow logs whose database name contains this value.
|
|
25193
25225
|
* @type {string}
|
|
25194
25226
|
* @memberof SharedApiGetSlowLogStats
|
|
25195
25227
|
*/
|
|
25196
25228
|
readonly dbName?: string
|
|
25197
25229
|
|
|
25198
25230
|
/**
|
|
25199
|
-
*
|
|
25200
|
-
* @type {string}
|
|
25201
|
-
* @memberof SharedApiGetSlowLogStats
|
|
25202
|
-
*/
|
|
25203
|
-
readonly dbNameContains?: string
|
|
25204
|
-
|
|
25205
|
-
/**
|
|
25206
|
-
*
|
|
25231
|
+
* Filter slow logs whose user name contains this value.
|
|
25207
25232
|
* @type {string}
|
|
25208
25233
|
* @memberof SharedApiGetSlowLogStats
|
|
25209
25234
|
*/
|
|
25210
25235
|
readonly userName?: string
|
|
25211
25236
|
|
|
25212
25237
|
/**
|
|
25213
|
-
*
|
|
25214
|
-
* @type {string}
|
|
25215
|
-
* @memberof SharedApiGetSlowLogStats
|
|
25216
|
-
*/
|
|
25217
|
-
readonly userNameContains?: string
|
|
25218
|
-
|
|
25219
|
-
/**
|
|
25220
|
-
*
|
|
25238
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
25221
25239
|
* @type {string}
|
|
25222
25240
|
* @memberof SharedApiGetSlowLogStats
|
|
25223
25241
|
*/
|
|
25224
25242
|
readonly clientIp?: string
|
|
25225
25243
|
|
|
25226
25244
|
/**
|
|
25227
|
-
*
|
|
25228
|
-
* @type {string}
|
|
25229
|
-
* @memberof SharedApiGetSlowLogStats
|
|
25230
|
-
*/
|
|
25231
|
-
readonly clientIpContains?: string
|
|
25232
|
-
|
|
25233
|
-
/**
|
|
25234
|
-
*
|
|
25235
|
-
* @type {string}
|
|
25236
|
-
* @memberof SharedApiGetSlowLogStats
|
|
25237
|
-
*/
|
|
25238
|
-
readonly clientIpCIDR?: string
|
|
25239
|
-
|
|
25240
|
-
/**
|
|
25241
|
-
*
|
|
25245
|
+
* Filter slow logs whose application name contains this value.
|
|
25242
25246
|
* @type {string}
|
|
25243
25247
|
* @memberof SharedApiGetSlowLogStats
|
|
25244
25248
|
*/
|
|
25245
25249
|
readonly appName?: string
|
|
25246
25250
|
|
|
25247
|
-
/**
|
|
25248
|
-
*
|
|
25249
|
-
* @type {string}
|
|
25250
|
-
* @memberof SharedApiGetSlowLogStats
|
|
25251
|
-
*/
|
|
25252
|
-
readonly appNameContains?: string
|
|
25253
|
-
|
|
25254
25251
|
/**
|
|
25255
25252
|
*
|
|
25256
25253
|
* @type {string}
|
|
@@ -27758,68 +27755,33 @@ export interface SharedApiQueryLogHitsRequest {
|
|
|
27758
27755
|
readonly maxRowsSent?: number
|
|
27759
27756
|
|
|
27760
27757
|
/**
|
|
27761
|
-
*
|
|
27758
|
+
* Filter slow logs whose database name contains this value.
|
|
27762
27759
|
* @type {string}
|
|
27763
27760
|
* @memberof SharedApiQueryLogHits
|
|
27764
27761
|
*/
|
|
27765
27762
|
readonly dbName?: string
|
|
27766
27763
|
|
|
27767
27764
|
/**
|
|
27768
|
-
*
|
|
27769
|
-
* @type {string}
|
|
27770
|
-
* @memberof SharedApiQueryLogHits
|
|
27771
|
-
*/
|
|
27772
|
-
readonly dbNameContains?: string
|
|
27773
|
-
|
|
27774
|
-
/**
|
|
27775
|
-
*
|
|
27765
|
+
* Filter slow logs whose user name contains this value.
|
|
27776
27766
|
* @type {string}
|
|
27777
27767
|
* @memberof SharedApiQueryLogHits
|
|
27778
27768
|
*/
|
|
27779
27769
|
readonly userName?: string
|
|
27780
27770
|
|
|
27781
27771
|
/**
|
|
27782
|
-
*
|
|
27783
|
-
* @type {string}
|
|
27784
|
-
* @memberof SharedApiQueryLogHits
|
|
27785
|
-
*/
|
|
27786
|
-
readonly userNameContains?: string
|
|
27787
|
-
|
|
27788
|
-
/**
|
|
27789
|
-
*
|
|
27772
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
27790
27773
|
* @type {string}
|
|
27791
27774
|
* @memberof SharedApiQueryLogHits
|
|
27792
27775
|
*/
|
|
27793
27776
|
readonly clientIp?: string
|
|
27794
27777
|
|
|
27795
27778
|
/**
|
|
27796
|
-
*
|
|
27797
|
-
* @type {string}
|
|
27798
|
-
* @memberof SharedApiQueryLogHits
|
|
27799
|
-
*/
|
|
27800
|
-
readonly clientIpContains?: string
|
|
27801
|
-
|
|
27802
|
-
/**
|
|
27803
|
-
*
|
|
27804
|
-
* @type {string}
|
|
27805
|
-
* @memberof SharedApiQueryLogHits
|
|
27806
|
-
*/
|
|
27807
|
-
readonly clientIpCIDR?: string
|
|
27808
|
-
|
|
27809
|
-
/**
|
|
27810
|
-
*
|
|
27779
|
+
* Filter slow logs whose application name contains this value.
|
|
27811
27780
|
* @type {string}
|
|
27812
27781
|
* @memberof SharedApiQueryLogHits
|
|
27813
27782
|
*/
|
|
27814
27783
|
readonly appName?: string
|
|
27815
27784
|
|
|
27816
|
-
/**
|
|
27817
|
-
*
|
|
27818
|
-
* @type {string}
|
|
27819
|
-
* @memberof SharedApiQueryLogHits
|
|
27820
|
-
*/
|
|
27821
|
-
readonly appNameContains?: string
|
|
27822
|
-
|
|
27823
27785
|
/**
|
|
27824
27786
|
*
|
|
27825
27787
|
* @type {string}
|
|
@@ -28115,68 +28077,33 @@ export interface SharedApiQuerySlowLogTemplateSamplesRequest {
|
|
|
28115
28077
|
readonly maxRowsSent?: number
|
|
28116
28078
|
|
|
28117
28079
|
/**
|
|
28118
|
-
*
|
|
28080
|
+
* Filter slow logs whose database name contains this value.
|
|
28119
28081
|
* @type {string}
|
|
28120
28082
|
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
28121
28083
|
*/
|
|
28122
28084
|
readonly dbName?: string
|
|
28123
28085
|
|
|
28124
28086
|
/**
|
|
28125
|
-
*
|
|
28126
|
-
* @type {string}
|
|
28127
|
-
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
28128
|
-
*/
|
|
28129
|
-
readonly dbNameContains?: string
|
|
28130
|
-
|
|
28131
|
-
/**
|
|
28132
|
-
*
|
|
28087
|
+
* Filter slow logs whose user name contains this value.
|
|
28133
28088
|
* @type {string}
|
|
28134
28089
|
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
28135
28090
|
*/
|
|
28136
28091
|
readonly userName?: string
|
|
28137
28092
|
|
|
28138
28093
|
/**
|
|
28139
|
-
*
|
|
28140
|
-
* @type {string}
|
|
28141
|
-
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
28142
|
-
*/
|
|
28143
|
-
readonly userNameContains?: string
|
|
28144
|
-
|
|
28145
|
-
/**
|
|
28146
|
-
*
|
|
28094
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
28147
28095
|
* @type {string}
|
|
28148
28096
|
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
28149
28097
|
*/
|
|
28150
28098
|
readonly clientIp?: string
|
|
28151
28099
|
|
|
28152
28100
|
/**
|
|
28153
|
-
*
|
|
28154
|
-
* @type {string}
|
|
28155
|
-
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
28156
|
-
*/
|
|
28157
|
-
readonly clientIpContains?: string
|
|
28158
|
-
|
|
28159
|
-
/**
|
|
28160
|
-
*
|
|
28161
|
-
* @type {string}
|
|
28162
|
-
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
28163
|
-
*/
|
|
28164
|
-
readonly clientIpCIDR?: string
|
|
28165
|
-
|
|
28166
|
-
/**
|
|
28167
|
-
*
|
|
28101
|
+
* Filter slow logs whose application name contains this value.
|
|
28168
28102
|
* @type {string}
|
|
28169
28103
|
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
28170
28104
|
*/
|
|
28171
28105
|
readonly appName?: string
|
|
28172
28106
|
|
|
28173
|
-
/**
|
|
28174
|
-
*
|
|
28175
|
-
* @type {string}
|
|
28176
|
-
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
28177
|
-
*/
|
|
28178
|
-
readonly appNameContains?: string
|
|
28179
|
-
|
|
28180
28107
|
/**
|
|
28181
28108
|
*
|
|
28182
28109
|
* @type {boolean}
|
|
@@ -28318,67 +28245,32 @@ export interface SharedApiQuerySlowLogTemplatesRequest {
|
|
|
28318
28245
|
readonly maxRowsSent?: number
|
|
28319
28246
|
|
|
28320
28247
|
/**
|
|
28321
|
-
*
|
|
28248
|
+
* Filter slow logs whose database name contains this value.
|
|
28322
28249
|
* @type {string}
|
|
28323
28250
|
* @memberof SharedApiQuerySlowLogTemplates
|
|
28324
28251
|
*/
|
|
28325
28252
|
readonly dbName?: string
|
|
28326
28253
|
|
|
28327
28254
|
/**
|
|
28328
|
-
*
|
|
28329
|
-
* @type {string}
|
|
28330
|
-
* @memberof SharedApiQuerySlowLogTemplates
|
|
28331
|
-
*/
|
|
28332
|
-
readonly dbNameContains?: string
|
|
28333
|
-
|
|
28334
|
-
/**
|
|
28335
|
-
*
|
|
28255
|
+
* Filter slow logs whose user name contains this value.
|
|
28336
28256
|
* @type {string}
|
|
28337
28257
|
* @memberof SharedApiQuerySlowLogTemplates
|
|
28338
28258
|
*/
|
|
28339
28259
|
readonly userName?: string
|
|
28340
28260
|
|
|
28341
28261
|
/**
|
|
28342
|
-
*
|
|
28343
|
-
* @type {string}
|
|
28344
|
-
* @memberof SharedApiQuerySlowLogTemplates
|
|
28345
|
-
*/
|
|
28346
|
-
readonly userNameContains?: string
|
|
28347
|
-
|
|
28348
|
-
/**
|
|
28349
|
-
*
|
|
28262
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
28350
28263
|
* @type {string}
|
|
28351
28264
|
* @memberof SharedApiQuerySlowLogTemplates
|
|
28352
28265
|
*/
|
|
28353
28266
|
readonly clientIp?: string
|
|
28354
28267
|
|
|
28355
28268
|
/**
|
|
28356
|
-
*
|
|
28357
|
-
* @type {string}
|
|
28358
|
-
* @memberof SharedApiQuerySlowLogTemplates
|
|
28359
|
-
*/
|
|
28360
|
-
readonly clientIpContains?: string
|
|
28361
|
-
|
|
28362
|
-
/**
|
|
28363
|
-
*
|
|
28364
|
-
* @type {string}
|
|
28365
|
-
* @memberof SharedApiQuerySlowLogTemplates
|
|
28366
|
-
*/
|
|
28367
|
-
readonly clientIpCIDR?: string
|
|
28368
|
-
|
|
28369
|
-
/**
|
|
28370
|
-
*
|
|
28269
|
+
* Filter slow logs whose application name contains this value.
|
|
28371
28270
|
* @type {string}
|
|
28372
28271
|
* @memberof SharedApiQuerySlowLogTemplates
|
|
28373
28272
|
*/
|
|
28374
28273
|
readonly appName?: string
|
|
28375
|
-
|
|
28376
|
-
/**
|
|
28377
|
-
*
|
|
28378
|
-
* @type {string}
|
|
28379
|
-
* @memberof SharedApiQuerySlowLogTemplates
|
|
28380
|
-
*/
|
|
28381
|
-
readonly appNameContains?: string
|
|
28382
28274
|
}
|
|
28383
28275
|
|
|
28384
28276
|
/**
|
|
@@ -28507,68 +28399,33 @@ export interface SharedApiQuerySlowLogsRequest {
|
|
|
28507
28399
|
readonly maxRowsSent?: number
|
|
28508
28400
|
|
|
28509
28401
|
/**
|
|
28510
|
-
*
|
|
28402
|
+
* Filter slow logs whose database name contains this value.
|
|
28511
28403
|
* @type {string}
|
|
28512
28404
|
* @memberof SharedApiQuerySlowLogs
|
|
28513
28405
|
*/
|
|
28514
28406
|
readonly dbName?: string
|
|
28515
28407
|
|
|
28516
28408
|
/**
|
|
28517
|
-
*
|
|
28518
|
-
* @type {string}
|
|
28519
|
-
* @memberof SharedApiQuerySlowLogs
|
|
28520
|
-
*/
|
|
28521
|
-
readonly dbNameContains?: string
|
|
28522
|
-
|
|
28523
|
-
/**
|
|
28524
|
-
*
|
|
28409
|
+
* Filter slow logs whose user name contains this value.
|
|
28525
28410
|
* @type {string}
|
|
28526
28411
|
* @memberof SharedApiQuerySlowLogs
|
|
28527
28412
|
*/
|
|
28528
28413
|
readonly userName?: string
|
|
28529
28414
|
|
|
28530
28415
|
/**
|
|
28531
|
-
*
|
|
28532
|
-
* @type {string}
|
|
28533
|
-
* @memberof SharedApiQuerySlowLogs
|
|
28534
|
-
*/
|
|
28535
|
-
readonly userNameContains?: string
|
|
28536
|
-
|
|
28537
|
-
/**
|
|
28538
|
-
*
|
|
28416
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
28539
28417
|
* @type {string}
|
|
28540
28418
|
* @memberof SharedApiQuerySlowLogs
|
|
28541
28419
|
*/
|
|
28542
28420
|
readonly clientIp?: string
|
|
28543
28421
|
|
|
28544
28422
|
/**
|
|
28545
|
-
*
|
|
28546
|
-
* @type {string}
|
|
28547
|
-
* @memberof SharedApiQuerySlowLogs
|
|
28548
|
-
*/
|
|
28549
|
-
readonly clientIpContains?: string
|
|
28550
|
-
|
|
28551
|
-
/**
|
|
28552
|
-
*
|
|
28553
|
-
* @type {string}
|
|
28554
|
-
* @memberof SharedApiQuerySlowLogs
|
|
28555
|
-
*/
|
|
28556
|
-
readonly clientIpCIDR?: string
|
|
28557
|
-
|
|
28558
|
-
/**
|
|
28559
|
-
*
|
|
28423
|
+
* Filter slow logs whose application name contains this value.
|
|
28560
28424
|
* @type {string}
|
|
28561
28425
|
* @memberof SharedApiQuerySlowLogs
|
|
28562
28426
|
*/
|
|
28563
28427
|
readonly appName?: string
|
|
28564
28428
|
|
|
28565
|
-
/**
|
|
28566
|
-
*
|
|
28567
|
-
* @type {string}
|
|
28568
|
-
* @memberof SharedApiQuerySlowLogs
|
|
28569
|
-
*/
|
|
28570
|
-
readonly appNameContains?: string
|
|
28571
|
-
|
|
28572
28429
|
/**
|
|
28573
28430
|
*
|
|
28574
28431
|
* @type {string}
|
|
@@ -29942,7 +29799,7 @@ export class SharedApi extends BaseAPI implements SharedApiInterface {
|
|
|
29942
29799
|
* @memberof SharedApi
|
|
29943
29800
|
*/
|
|
29944
29801
|
public aggregateSlowLogs(requestParameters: SharedApiAggregateSlowLogsRequest, options?: RawAxiosRequestConfig) {
|
|
29945
|
-
return SharedApiFp(this.configuration).aggregateSlowLogs(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.limit, requestParameters.sortType, requestParameters.groupBy, requestParameters.topN, options).then((request) => request(this.axios, this.basePath));
|
|
29802
|
+
return SharedApiFp(this.configuration).aggregateSlowLogs(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.limit, requestParameters.sortType, requestParameters.groupBy, requestParameters.topN, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.userName, requestParameters.clientIp, requestParameters.appName, requestParameters.templateId, requestParameters.unclassifiedOnly, options).then((request) => request(this.axios, this.basePath));
|
|
29946
29803
|
}
|
|
29947
29804
|
|
|
29948
29805
|
/**
|
|
@@ -31190,7 +31047,7 @@ export class SharedApi extends BaseAPI implements SharedApiInterface {
|
|
|
31190
31047
|
* @memberof SharedApi
|
|
31191
31048
|
*/
|
|
31192
31049
|
public getSlowLogStats(requestParameters: SharedApiGetSlowLogStatsRequest, options?: RawAxiosRequestConfig) {
|
|
31193
|
-
return SharedApiFp(this.configuration).getSlowLogStats(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.
|
|
31050
|
+
return SharedApiFp(this.configuration).getSlowLogStats(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.userName, requestParameters.clientIp, requestParameters.appName, requestParameters.templateId, requestParameters.unclassifiedOnly, options).then((request) => request(this.axios, this.basePath));
|
|
31194
31051
|
}
|
|
31195
31052
|
|
|
31196
31053
|
/**
|
|
@@ -32194,7 +32051,7 @@ export class SharedApi extends BaseAPI implements SharedApiInterface {
|
|
|
32194
32051
|
* @memberof SharedApi
|
|
32195
32052
|
*/
|
|
32196
32053
|
public queryLogHits(requestParameters: SharedApiQueryLogHitsRequest, options?: RawAxiosRequestConfig) {
|
|
32197
|
-
return SharedApiFp(this.configuration).queryLogHits(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.step, requestParameters.logType, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.
|
|
32054
|
+
return SharedApiFp(this.configuration).queryLogHits(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.step, requestParameters.logType, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.userName, requestParameters.clientIp, requestParameters.appName, requestParameters.templateId, requestParameters.unclassifiedOnly, options).then((request) => request(this.axios, this.basePath));
|
|
32198
32055
|
}
|
|
32199
32056
|
|
|
32200
32057
|
/**
|
|
@@ -32230,7 +32087,7 @@ export class SharedApi extends BaseAPI implements SharedApiInterface {
|
|
|
32230
32087
|
* @memberof SharedApi
|
|
32231
32088
|
*/
|
|
32232
32089
|
public querySlowLogTemplateSamples(requestParameters: SharedApiQuerySlowLogTemplateSamplesRequest, options?: RawAxiosRequestConfig) {
|
|
32233
|
-
return SharedApiFp(this.configuration).querySlowLogTemplateSamples(requestParameters.orgName, requestParameters.clusterName, requestParameters.templateId, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.limit, requestParameters.sortType, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.
|
|
32090
|
+
return SharedApiFp(this.configuration).querySlowLogTemplateSamples(requestParameters.orgName, requestParameters.clusterName, requestParameters.templateId, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.limit, requestParameters.sortType, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.userName, requestParameters.clientIp, requestParameters.appName, requestParameters.unclassifiedOnly, options).then((request) => request(this.axios, this.basePath));
|
|
32234
32091
|
}
|
|
32235
32092
|
|
|
32236
32093
|
/**
|
|
@@ -32242,7 +32099,7 @@ export class SharedApi extends BaseAPI implements SharedApiInterface {
|
|
|
32242
32099
|
* @memberof SharedApi
|
|
32243
32100
|
*/
|
|
32244
32101
|
public querySlowLogTemplates(requestParameters: SharedApiQuerySlowLogTemplatesRequest, options?: RawAxiosRequestConfig) {
|
|
32245
|
-
return SharedApiFp(this.configuration).querySlowLogTemplates(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.topN, requestParameters.sortBy, requestParameters.sortType, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.
|
|
32102
|
+
return SharedApiFp(this.configuration).querySlowLogTemplates(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.topN, requestParameters.sortBy, requestParameters.sortType, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.userName, requestParameters.clientIp, requestParameters.appName, options).then((request) => request(this.axios, this.basePath));
|
|
32246
32103
|
}
|
|
32247
32104
|
|
|
32248
32105
|
/**
|
|
@@ -32254,7 +32111,7 @@ export class SharedApi extends BaseAPI implements SharedApiInterface {
|
|
|
32254
32111
|
* @memberof SharedApi
|
|
32255
32112
|
*/
|
|
32256
32113
|
public querySlowLogs(requestParameters: SharedApiQuerySlowLogsRequest, options?: RawAxiosRequestConfig) {
|
|
32257
|
-
return SharedApiFp(this.configuration).querySlowLogs(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.limit, requestParameters.sortType, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.
|
|
32114
|
+
return SharedApiFp(this.configuration).querySlowLogs(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.limit, requestParameters.sortType, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.userName, requestParameters.clientIp, requestParameters.appName, requestParameters.templateId, requestParameters.unclassifiedOnly, options).then((request) => request(this.axios, this.basePath));
|
|
32258
32115
|
}
|
|
32259
32116
|
|
|
32260
32117
|
/**
|