kb-cloud-client-typescript 2.3.0-alpha.227 → 2.3.0-alpha.229
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/adminapi/api.d.ts +1 -0
- package/dist/adminapi/api.d.ts.map +1 -1
- package/dist/adminapi/api.js +1 -0
- package/dist/adminapi/api.js.map +1 -1
- package/dist/adminapi/apis/cluster-loki-log-api.d.ts +885 -0
- package/dist/adminapi/apis/cluster-loki-log-api.d.ts.map +1 -0
- package/dist/adminapi/apis/cluster-loki-log-api.js +853 -0
- package/dist/adminapi/apis/cluster-loki-log-api.js.map +1 -0
- package/dist/adminapi/apis/shared-api.d.ts +848 -15
- package/dist/adminapi/apis/shared-api.d.ts.map +1 -1
- package/dist/adminapi/apis/shared-api.js +845 -56
- package/dist/adminapi/apis/shared-api.js.map +1 -1
- package/dist/adminapi/models/environment.d.ts +7 -0
- package/dist/adminapi/models/environment.d.ts.map +1 -1
- package/dist/adminapi/models/index.d.ts +1 -0
- package/dist/adminapi/models/index.d.ts.map +1 -1
- package/dist/adminapi/models/index.js +1 -0
- package/dist/adminapi/models/index.js.map +1 -1
- package/dist/adminapi/models/log-backend-type.d.ts +22 -0
- package/dist/adminapi/models/log-backend-type.d.ts.map +1 -0
- package/dist/adminapi/models/log-backend-type.js +26 -0
- package/dist/adminapi/models/log-backend-type.js.map +1 -0
- package/dist/openapi/api.d.ts +1 -0
- package/dist/openapi/api.d.ts.map +1 -1
- package/dist/openapi/api.js +1 -0
- package/dist/openapi/api.js.map +1 -1
- package/dist/openapi/apis/cluster-loki-log-api.d.ts +885 -0
- package/dist/openapi/apis/cluster-loki-log-api.d.ts.map +1 -0
- package/dist/openapi/apis/cluster-loki-log-api.js +853 -0
- package/dist/openapi/apis/cluster-loki-log-api.js.map +1 -0
- package/dist/openapi/apis/shared-api.d.ts +844 -11
- package/dist/openapi/apis/shared-api.d.ts.map +1 -1
- package/dist/openapi/apis/shared-api.js +845 -56
- package/dist/openapi/apis/shared-api.js.map +1 -1
- package/dist/openapi/models/environment.d.ts +7 -0
- package/dist/openapi/models/environment.d.ts.map +1 -1
- package/dist/openapi/models/index.d.ts +1 -0
- package/dist/openapi/models/index.d.ts.map +1 -1
- package/dist/openapi/models/index.js +1 -0
- package/dist/openapi/models/index.js.map +1 -1
- package/dist/openapi/models/log-backend-type.d.ts +22 -0
- package/dist/openapi/models/log-backend-type.d.ts.map +1 -0
- package/dist/openapi/models/log-backend-type.js +26 -0
- package/dist/openapi/models/log-backend-type.js.map +1 -0
- package/package.json +1 -1
- package/src/adminapi/.openapi-generator/FILES +2 -0
- package/src/adminapi/api.ts +1 -0
- package/src/adminapi/apis/cluster-loki-log-api.ts +1525 -0
- package/src/adminapi/apis/shared-api.ts +1620 -173
- package/src/adminapi/models/environment.ts +9 -0
- package/src/adminapi/models/index.ts +1 -0
- package/src/adminapi/models/log-backend-type.ts +31 -0
- package/src/adminapi.yaml +309 -0
- package/src/openapi/.openapi-generator/FILES +2 -0
- package/src/openapi/api.ts +1 -0
- package/src/openapi/apis/cluster-loki-log-api.ts +1525 -0
- package/src/openapi/apis/shared-api.ts +1620 -173
- package/src/openapi/models/environment.ts +9 -0
- package/src/openapi/models/index.ts +1 -0
- package/src/openapi/models/log-backend-type.ts +31 -0
- package/src/openapi.yaml +309 -0
|
@@ -1027,6 +1027,24 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1027
1027
|
* @throws {RequiredError}
|
|
1028
1028
|
*/
|
|
1029
1029
|
exportClusterLogs: (orgName: string, clusterName: string, logType: string, startTime?: number, endTime?: number, format?: string, query?: string, filename?: string, componentName?: string, instanceName?: string, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, userName?: string, clientIp?: string, appName?: string, templateId?: string, unclassifiedOnly?: boolean, maxLines?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1030
|
+
/**
|
|
1031
|
+
* Export logs through the Loki compatibility API.
|
|
1032
|
+
* @summary Export Loki logs
|
|
1033
|
+
* @param {string} orgName
|
|
1034
|
+
* @param {string} clusterName
|
|
1035
|
+
* @param {string} logType Log type: runninglog, errorlog, slow, auditlog
|
|
1036
|
+
* @param {number} [startTime] Start time in epoch nanoseconds. If omitted, exports from the earliest available log
|
|
1037
|
+
* @param {number} [endTime] End time in epoch nanoseconds. If omitted, exports up to the latest available log
|
|
1038
|
+
* @param {string} [format] Export format: csv, raw, jsonl
|
|
1039
|
+
* @param {string} [query]
|
|
1040
|
+
* @param {string} [filename]
|
|
1041
|
+
* @param {string} [componentName]
|
|
1042
|
+
* @param {string} [instanceName]
|
|
1043
|
+
* @param {number} [maxLines] Maximum number of lines to export. Defaults to 100000 if omitted
|
|
1044
|
+
* @param {*} [options] Override http request option.
|
|
1045
|
+
* @throws {RequiredError}
|
|
1046
|
+
*/
|
|
1047
|
+
exportLokiClusterLogs: (orgName: string, clusterName: string, logType: string, startTime?: number, endTime?: number, format?: string, query?: string, filename?: string, componentName?: string, instanceName?: string, maxLines?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1030
1048
|
/**
|
|
1031
1049
|
*
|
|
1032
1050
|
* @summary Export parameter template from cluster
|
|
@@ -1434,6 +1452,19 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1434
1452
|
* @throws {RequiredError}
|
|
1435
1453
|
*/
|
|
1436
1454
|
getKafkaTopics: (orgName: string, clusterName: string, nameFilter?: string, onlyNames?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1455
|
+
/**
|
|
1456
|
+
* Query slow-log statistics through the Loki compatibility API.
|
|
1457
|
+
* @summary Query Loki slow-log statistics
|
|
1458
|
+
* @param {string} orgName
|
|
1459
|
+
* @param {string} clusterName
|
|
1460
|
+
* @param {string} startTime Start time in epoch nanoseconds.
|
|
1461
|
+
* @param {string} endTime End time in epoch nanoseconds.
|
|
1462
|
+
* @param {string} [componentName]
|
|
1463
|
+
* @param {string} [instanceName]
|
|
1464
|
+
* @param {*} [options] Override http request option.
|
|
1465
|
+
* @throws {RequiredError}
|
|
1466
|
+
*/
|
|
1467
|
+
getLokiSlowLogStats: (orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1437
1468
|
/**
|
|
1438
1469
|
* Get a Milvus native role and its privilege grants.
|
|
1439
1470
|
* @summary Get Milvus role
|
|
@@ -2509,6 +2540,87 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2509
2540
|
* @throws {RequiredError}
|
|
2510
2541
|
*/
|
|
2511
2542
|
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>;
|
|
2543
|
+
/**
|
|
2544
|
+
* Query audit logs through the Loki compatibility API.
|
|
2545
|
+
* @summary Query Loki audit logs
|
|
2546
|
+
* @param {string} orgName
|
|
2547
|
+
* @param {string} clusterName
|
|
2548
|
+
* @param {string} startTime Start time in epoch nanoseconds.
|
|
2549
|
+
* @param {string} endTime End time in epoch nanoseconds.
|
|
2550
|
+
* @param {string} [limit]
|
|
2551
|
+
* @param {string} [componentName]
|
|
2552
|
+
* @param {string} [instanceName]
|
|
2553
|
+
* @param {SortType} [sortType]
|
|
2554
|
+
* @param {*} [options] Override http request option.
|
|
2555
|
+
* @throws {RequiredError}
|
|
2556
|
+
*/
|
|
2557
|
+
queryLokiAuditLogs: (orgName: string, clusterName: string, startTime: string, endTime: string, limit?: string, componentName?: string, instanceName?: string, sortType?: SortType, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2558
|
+
/**
|
|
2559
|
+
* Query error logs through the Loki compatibility API.
|
|
2560
|
+
* @summary Query Loki error logs
|
|
2561
|
+
* @param {string} orgName
|
|
2562
|
+
* @param {string} clusterName
|
|
2563
|
+
* @param {string} startTime Start time in epoch nanoseconds.
|
|
2564
|
+
* @param {string} endTime End time in epoch nanoseconds.
|
|
2565
|
+
* @param {string} [componentName]
|
|
2566
|
+
* @param {string} [instanceName]
|
|
2567
|
+
* @param {string} [filename]
|
|
2568
|
+
* @param {string} [query]
|
|
2569
|
+
* @param {string} [limit]
|
|
2570
|
+
* @param {SortType} [sortType]
|
|
2571
|
+
* @param {*} [options] Override http request option.
|
|
2572
|
+
* @throws {RequiredError}
|
|
2573
|
+
*/
|
|
2574
|
+
queryLokiErrorLogs: (orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, filename?: string, query?: string, limit?: string, sortType?: SortType, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2575
|
+
/**
|
|
2576
|
+
* Query pod logs through the Loki compatibility API.
|
|
2577
|
+
* @summary Query Loki pod logs
|
|
2578
|
+
* @param {string} orgName
|
|
2579
|
+
* @param {string} clusterName
|
|
2580
|
+
* @param {string} startTime Start time in epoch nanoseconds.
|
|
2581
|
+
* @param {string} endTime End time in epoch nanoseconds.
|
|
2582
|
+
* @param {string} [componentName]
|
|
2583
|
+
* @param {string} [instanceName]
|
|
2584
|
+
* @param {string} [filename]
|
|
2585
|
+
* @param {string} [limit]
|
|
2586
|
+
* @param {SortType} [sortType]
|
|
2587
|
+
* @param {*} [options] Override http request option.
|
|
2588
|
+
* @throws {RequiredError}
|
|
2589
|
+
*/
|
|
2590
|
+
queryLokiPodLogs: (orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, filename?: string, limit?: string, sortType?: SortType, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2591
|
+
/**
|
|
2592
|
+
* Query running logs through the Loki compatibility API.
|
|
2593
|
+
* @summary Query Loki running logs
|
|
2594
|
+
* @param {string} orgName
|
|
2595
|
+
* @param {string} clusterName
|
|
2596
|
+
* @param {string} startTime Start time in epoch nanoseconds.
|
|
2597
|
+
* @param {string} endTime End time in epoch nanoseconds.
|
|
2598
|
+
* @param {string} [componentName]
|
|
2599
|
+
* @param {string} [instanceName]
|
|
2600
|
+
* @param {string} [filename]
|
|
2601
|
+
* @param {string} [limit]
|
|
2602
|
+
* @param {string} [query]
|
|
2603
|
+
* @param {SortType} [sortType]
|
|
2604
|
+
* @param {*} [options] Override http request option.
|
|
2605
|
+
* @throws {RequiredError}
|
|
2606
|
+
*/
|
|
2607
|
+
queryLokiRunningLogs: (orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, filename?: string, limit?: string, query?: string, sortType?: SortType, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2608
|
+
/**
|
|
2609
|
+
* Query slow logs through the Loki compatibility API.
|
|
2610
|
+
* @summary Query Loki slow logs
|
|
2611
|
+
* @param {string} orgName
|
|
2612
|
+
* @param {string} clusterName
|
|
2613
|
+
* @param {string} startTime Start time in epoch nanoseconds.
|
|
2614
|
+
* @param {string} endTime End time in epoch nanoseconds.
|
|
2615
|
+
* @param {string} [componentName]
|
|
2616
|
+
* @param {string} [instanceName]
|
|
2617
|
+
* @param {string} [query]
|
|
2618
|
+
* @param {string} [limit]
|
|
2619
|
+
* @param {SortType} [sortType]
|
|
2620
|
+
* @param {*} [options] Override http request option.
|
|
2621
|
+
* @throws {RequiredError}
|
|
2622
|
+
*/
|
|
2623
|
+
queryLokiSlowLogs: (orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2512
2624
|
/**
|
|
2513
2625
|
* Query pod logs of a cluster
|
|
2514
2626
|
* @summary Query cluster pod logs
|
|
@@ -4035,6 +4147,24 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
|
|
|
4035
4147
|
* @throws {RequiredError}
|
|
4036
4148
|
*/
|
|
4037
4149
|
exportClusterLogs(orgName: string, clusterName: string, logType: string, startTime?: number, endTime?: number, format?: string, query?: string, filename?: string, componentName?: string, instanceName?: string, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, userName?: string, clientIp?: string, appName?: string, templateId?: string, unclassifiedOnly?: boolean, maxLines?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
4150
|
+
/**
|
|
4151
|
+
* Export logs through the Loki compatibility API.
|
|
4152
|
+
* @summary Export Loki logs
|
|
4153
|
+
* @param {string} orgName
|
|
4154
|
+
* @param {string} clusterName
|
|
4155
|
+
* @param {string} logType Log type: runninglog, errorlog, slow, auditlog
|
|
4156
|
+
* @param {number} [startTime] Start time in epoch nanoseconds. If omitted, exports from the earliest available log
|
|
4157
|
+
* @param {number} [endTime] End time in epoch nanoseconds. If omitted, exports up to the latest available log
|
|
4158
|
+
* @param {string} [format] Export format: csv, raw, jsonl
|
|
4159
|
+
* @param {string} [query]
|
|
4160
|
+
* @param {string} [filename]
|
|
4161
|
+
* @param {string} [componentName]
|
|
4162
|
+
* @param {string} [instanceName]
|
|
4163
|
+
* @param {number} [maxLines] Maximum number of lines to export. Defaults to 100000 if omitted
|
|
4164
|
+
* @param {*} [options] Override http request option.
|
|
4165
|
+
* @throws {RequiredError}
|
|
4166
|
+
*/
|
|
4167
|
+
exportLokiClusterLogs(orgName: string, clusterName: string, logType: string, startTime?: number, endTime?: number, format?: string, query?: string, filename?: string, componentName?: string, instanceName?: string, maxLines?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
4038
4168
|
/**
|
|
4039
4169
|
*
|
|
4040
4170
|
* @summary Export parameter template from cluster
|
|
@@ -4444,6 +4574,19 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
|
|
|
4444
4574
|
* @throws {RequiredError}
|
|
4445
4575
|
*/
|
|
4446
4576
|
getKafkaTopics(orgName: string, clusterName: string, nameFilter?: string, onlyNames?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Topic>>>;
|
|
4577
|
+
/**
|
|
4578
|
+
* Query slow-log statistics through the Loki compatibility API.
|
|
4579
|
+
* @summary Query Loki slow-log statistics
|
|
4580
|
+
* @param {string} orgName
|
|
4581
|
+
* @param {string} clusterName
|
|
4582
|
+
* @param {string} startTime Start time in epoch nanoseconds.
|
|
4583
|
+
* @param {string} endTime End time in epoch nanoseconds.
|
|
4584
|
+
* @param {string} [componentName]
|
|
4585
|
+
* @param {string} [instanceName]
|
|
4586
|
+
* @param {*} [options] Override http request option.
|
|
4587
|
+
* @throws {RequiredError}
|
|
4588
|
+
*/
|
|
4589
|
+
getLokiSlowLogStats(orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterSlowLogStats>>;
|
|
4447
4590
|
/**
|
|
4448
4591
|
* Get a Milvus native role and its privilege grants.
|
|
4449
4592
|
* @summary Get Milvus role
|
|
@@ -5525,6 +5668,87 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
|
|
|
5525
5668
|
* @throws {RequiredError}
|
|
5526
5669
|
*/
|
|
5527
5670
|
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>>;
|
|
5671
|
+
/**
|
|
5672
|
+
* Query audit logs through the Loki compatibility API.
|
|
5673
|
+
* @summary Query Loki audit logs
|
|
5674
|
+
* @param {string} orgName
|
|
5675
|
+
* @param {string} clusterName
|
|
5676
|
+
* @param {string} startTime Start time in epoch nanoseconds.
|
|
5677
|
+
* @param {string} endTime End time in epoch nanoseconds.
|
|
5678
|
+
* @param {string} [limit]
|
|
5679
|
+
* @param {string} [componentName]
|
|
5680
|
+
* @param {string} [instanceName]
|
|
5681
|
+
* @param {SortType} [sortType]
|
|
5682
|
+
* @param {*} [options] Override http request option.
|
|
5683
|
+
* @throws {RequiredError}
|
|
5684
|
+
*/
|
|
5685
|
+
queryLokiAuditLogs(orgName: string, clusterName: string, startTime: string, endTime: string, limit?: string, componentName?: string, instanceName?: string, sortType?: SortType, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterExecutionLog>>;
|
|
5686
|
+
/**
|
|
5687
|
+
* Query error logs through the Loki compatibility API.
|
|
5688
|
+
* @summary Query Loki error logs
|
|
5689
|
+
* @param {string} orgName
|
|
5690
|
+
* @param {string} clusterName
|
|
5691
|
+
* @param {string} startTime Start time in epoch nanoseconds.
|
|
5692
|
+
* @param {string} endTime End time in epoch nanoseconds.
|
|
5693
|
+
* @param {string} [componentName]
|
|
5694
|
+
* @param {string} [instanceName]
|
|
5695
|
+
* @param {string} [filename]
|
|
5696
|
+
* @param {string} [query]
|
|
5697
|
+
* @param {string} [limit]
|
|
5698
|
+
* @param {SortType} [sortType]
|
|
5699
|
+
* @param {*} [options] Override http request option.
|
|
5700
|
+
* @throws {RequiredError}
|
|
5701
|
+
*/
|
|
5702
|
+
queryLokiErrorLogs(orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, filename?: string, query?: string, limit?: string, sortType?: SortType, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterRawLogResponse>>;
|
|
5703
|
+
/**
|
|
5704
|
+
* Query pod logs through the Loki compatibility API.
|
|
5705
|
+
* @summary Query Loki pod logs
|
|
5706
|
+
* @param {string} orgName
|
|
5707
|
+
* @param {string} clusterName
|
|
5708
|
+
* @param {string} startTime Start time in epoch nanoseconds.
|
|
5709
|
+
* @param {string} endTime End time in epoch nanoseconds.
|
|
5710
|
+
* @param {string} [componentName]
|
|
5711
|
+
* @param {string} [instanceName]
|
|
5712
|
+
* @param {string} [filename]
|
|
5713
|
+
* @param {string} [limit]
|
|
5714
|
+
* @param {SortType} [sortType]
|
|
5715
|
+
* @param {*} [options] Override http request option.
|
|
5716
|
+
* @throws {RequiredError}
|
|
5717
|
+
*/
|
|
5718
|
+
queryLokiPodLogs(orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, filename?: string, limit?: string, sortType?: SortType, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterRawLogResponse>>;
|
|
5719
|
+
/**
|
|
5720
|
+
* Query running logs through the Loki compatibility API.
|
|
5721
|
+
* @summary Query Loki running logs
|
|
5722
|
+
* @param {string} orgName
|
|
5723
|
+
* @param {string} clusterName
|
|
5724
|
+
* @param {string} startTime Start time in epoch nanoseconds.
|
|
5725
|
+
* @param {string} endTime End time in epoch nanoseconds.
|
|
5726
|
+
* @param {string} [componentName]
|
|
5727
|
+
* @param {string} [instanceName]
|
|
5728
|
+
* @param {string} [filename]
|
|
5729
|
+
* @param {string} [limit]
|
|
5730
|
+
* @param {string} [query]
|
|
5731
|
+
* @param {SortType} [sortType]
|
|
5732
|
+
* @param {*} [options] Override http request option.
|
|
5733
|
+
* @throws {RequiredError}
|
|
5734
|
+
*/
|
|
5735
|
+
queryLokiRunningLogs(orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, filename?: string, limit?: string, query?: string, sortType?: SortType, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterRawLogResponse>>;
|
|
5736
|
+
/**
|
|
5737
|
+
* Query slow logs through the Loki compatibility API.
|
|
5738
|
+
* @summary Query Loki slow logs
|
|
5739
|
+
* @param {string} orgName
|
|
5740
|
+
* @param {string} clusterName
|
|
5741
|
+
* @param {string} startTime Start time in epoch nanoseconds.
|
|
5742
|
+
* @param {string} endTime End time in epoch nanoseconds.
|
|
5743
|
+
* @param {string} [componentName]
|
|
5744
|
+
* @param {string} [instanceName]
|
|
5745
|
+
* @param {string} [query]
|
|
5746
|
+
* @param {string} [limit]
|
|
5747
|
+
* @param {SortType} [sortType]
|
|
5748
|
+
* @param {*} [options] Override http request option.
|
|
5749
|
+
* @throws {RequiredError}
|
|
5750
|
+
*/
|
|
5751
|
+
queryLokiSlowLogs(orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterExecutionLog>>;
|
|
5528
5752
|
/**
|
|
5529
5753
|
* Query pod logs of a cluster
|
|
5530
5754
|
* @summary Query cluster pod logs
|
|
@@ -6832,6 +7056,14 @@ export declare const SharedApiFactory: (configuration?: Configuration, basePath?
|
|
|
6832
7056
|
* @throws {RequiredError}
|
|
6833
7057
|
*/
|
|
6834
7058
|
exportClusterLogs(requestParameters: SharedApiExportClusterLogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
7059
|
+
/**
|
|
7060
|
+
* Export logs through the Loki compatibility API.
|
|
7061
|
+
* @summary Export Loki logs
|
|
7062
|
+
* @param {SharedApiExportLokiClusterLogsRequest} requestParameters Request parameters.
|
|
7063
|
+
* @param {*} [options] Override http request option.
|
|
7064
|
+
* @throws {RequiredError}
|
|
7065
|
+
*/
|
|
7066
|
+
exportLokiClusterLogs(requestParameters: SharedApiExportLokiClusterLogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
6835
7067
|
/**
|
|
6836
7068
|
*
|
|
6837
7069
|
* @summary Export parameter template from cluster
|
|
@@ -7153,6 +7385,14 @@ export declare const SharedApiFactory: (configuration?: Configuration, basePath?
|
|
|
7153
7385
|
* @throws {RequiredError}
|
|
7154
7386
|
*/
|
|
7155
7387
|
getKafkaTopics(requestParameters: SharedApiGetKafkaTopicsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<Topic>>;
|
|
7388
|
+
/**
|
|
7389
|
+
* Query slow-log statistics through the Loki compatibility API.
|
|
7390
|
+
* @summary Query Loki slow-log statistics
|
|
7391
|
+
* @param {SharedApiGetLokiSlowLogStatsRequest} requestParameters Request parameters.
|
|
7392
|
+
* @param {*} [options] Override http request option.
|
|
7393
|
+
* @throws {RequiredError}
|
|
7394
|
+
*/
|
|
7395
|
+
getLokiSlowLogStats(requestParameters: SharedApiGetLokiSlowLogStatsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterSlowLogStats>;
|
|
7156
7396
|
/**
|
|
7157
7397
|
* Get a Milvus native role and its privilege grants.
|
|
7158
7398
|
* @summary Get Milvus role
|
|
@@ -7957,6 +8197,46 @@ export declare const SharedApiFactory: (configuration?: Configuration, basePath?
|
|
|
7957
8197
|
* @throws {RequiredError}
|
|
7958
8198
|
*/
|
|
7959
8199
|
queryLogHits(requestParameters: SharedApiQueryLogHitsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterLogHitsResponse>;
|
|
8200
|
+
/**
|
|
8201
|
+
* Query audit logs through the Loki compatibility API.
|
|
8202
|
+
* @summary Query Loki audit logs
|
|
8203
|
+
* @param {SharedApiQueryLokiAuditLogsRequest} requestParameters Request parameters.
|
|
8204
|
+
* @param {*} [options] Override http request option.
|
|
8205
|
+
* @throws {RequiredError}
|
|
8206
|
+
*/
|
|
8207
|
+
queryLokiAuditLogs(requestParameters: SharedApiQueryLokiAuditLogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterExecutionLog>;
|
|
8208
|
+
/**
|
|
8209
|
+
* Query error logs through the Loki compatibility API.
|
|
8210
|
+
* @summary Query Loki error logs
|
|
8211
|
+
* @param {SharedApiQueryLokiErrorLogsRequest} requestParameters Request parameters.
|
|
8212
|
+
* @param {*} [options] Override http request option.
|
|
8213
|
+
* @throws {RequiredError}
|
|
8214
|
+
*/
|
|
8215
|
+
queryLokiErrorLogs(requestParameters: SharedApiQueryLokiErrorLogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterRawLogResponse>;
|
|
8216
|
+
/**
|
|
8217
|
+
* Query pod logs through the Loki compatibility API.
|
|
8218
|
+
* @summary Query Loki pod logs
|
|
8219
|
+
* @param {SharedApiQueryLokiPodLogsRequest} requestParameters Request parameters.
|
|
8220
|
+
* @param {*} [options] Override http request option.
|
|
8221
|
+
* @throws {RequiredError}
|
|
8222
|
+
*/
|
|
8223
|
+
queryLokiPodLogs(requestParameters: SharedApiQueryLokiPodLogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterRawLogResponse>;
|
|
8224
|
+
/**
|
|
8225
|
+
* Query running logs through the Loki compatibility API.
|
|
8226
|
+
* @summary Query Loki running logs
|
|
8227
|
+
* @param {SharedApiQueryLokiRunningLogsRequest} requestParameters Request parameters.
|
|
8228
|
+
* @param {*} [options] Override http request option.
|
|
8229
|
+
* @throws {RequiredError}
|
|
8230
|
+
*/
|
|
8231
|
+
queryLokiRunningLogs(requestParameters: SharedApiQueryLokiRunningLogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterRawLogResponse>;
|
|
8232
|
+
/**
|
|
8233
|
+
* Query slow logs through the Loki compatibility API.
|
|
8234
|
+
* @summary Query Loki slow logs
|
|
8235
|
+
* @param {SharedApiQueryLokiSlowLogsRequest} requestParameters Request parameters.
|
|
8236
|
+
* @param {*} [options] Override http request option.
|
|
8237
|
+
* @throws {RequiredError}
|
|
8238
|
+
*/
|
|
8239
|
+
queryLokiSlowLogs(requestParameters: SharedApiQueryLokiSlowLogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterExecutionLog>;
|
|
7960
8240
|
/**
|
|
7961
8241
|
* Query pod logs of a cluster
|
|
7962
8242
|
* @summary Query cluster pod logs
|
|
@@ -9126,6 +9406,15 @@ export interface SharedApiInterface {
|
|
|
9126
9406
|
* @memberof SharedApiInterface
|
|
9127
9407
|
*/
|
|
9128
9408
|
exportClusterLogs(requestParameters: SharedApiExportClusterLogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
9409
|
+
/**
|
|
9410
|
+
* Export logs through the Loki compatibility API.
|
|
9411
|
+
* @summary Export Loki logs
|
|
9412
|
+
* @param {SharedApiExportLokiClusterLogsRequest} requestParameters Request parameters.
|
|
9413
|
+
* @param {*} [options] Override http request option.
|
|
9414
|
+
* @throws {RequiredError}
|
|
9415
|
+
* @memberof SharedApiInterface
|
|
9416
|
+
*/
|
|
9417
|
+
exportLokiClusterLogs(requestParameters: SharedApiExportLokiClusterLogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
9129
9418
|
/**
|
|
9130
9419
|
*
|
|
9131
9420
|
* @summary Export parameter template from cluster
|
|
@@ -9487,6 +9776,15 @@ export interface SharedApiInterface {
|
|
|
9487
9776
|
* @memberof SharedApiInterface
|
|
9488
9777
|
*/
|
|
9489
9778
|
getKafkaTopics(requestParameters: SharedApiGetKafkaTopicsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<Topic>>;
|
|
9779
|
+
/**
|
|
9780
|
+
* Query slow-log statistics through the Loki compatibility API.
|
|
9781
|
+
* @summary Query Loki slow-log statistics
|
|
9782
|
+
* @param {SharedApiGetLokiSlowLogStatsRequest} requestParameters Request parameters.
|
|
9783
|
+
* @param {*} [options] Override http request option.
|
|
9784
|
+
* @throws {RequiredError}
|
|
9785
|
+
* @memberof SharedApiInterface
|
|
9786
|
+
*/
|
|
9787
|
+
getLokiSlowLogStats(requestParameters: SharedApiGetLokiSlowLogStatsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterSlowLogStats>;
|
|
9490
9788
|
/**
|
|
9491
9789
|
* Get a Milvus native role and its privilege grants.
|
|
9492
9790
|
* @summary Get Milvus role
|
|
@@ -10391,6 +10689,51 @@ export interface SharedApiInterface {
|
|
|
10391
10689
|
* @memberof SharedApiInterface
|
|
10392
10690
|
*/
|
|
10393
10691
|
queryLogHits(requestParameters: SharedApiQueryLogHitsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterLogHitsResponse>;
|
|
10692
|
+
/**
|
|
10693
|
+
* Query audit logs through the Loki compatibility API.
|
|
10694
|
+
* @summary Query Loki audit logs
|
|
10695
|
+
* @param {SharedApiQueryLokiAuditLogsRequest} requestParameters Request parameters.
|
|
10696
|
+
* @param {*} [options] Override http request option.
|
|
10697
|
+
* @throws {RequiredError}
|
|
10698
|
+
* @memberof SharedApiInterface
|
|
10699
|
+
*/
|
|
10700
|
+
queryLokiAuditLogs(requestParameters: SharedApiQueryLokiAuditLogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterExecutionLog>;
|
|
10701
|
+
/**
|
|
10702
|
+
* Query error logs through the Loki compatibility API.
|
|
10703
|
+
* @summary Query Loki error logs
|
|
10704
|
+
* @param {SharedApiQueryLokiErrorLogsRequest} requestParameters Request parameters.
|
|
10705
|
+
* @param {*} [options] Override http request option.
|
|
10706
|
+
* @throws {RequiredError}
|
|
10707
|
+
* @memberof SharedApiInterface
|
|
10708
|
+
*/
|
|
10709
|
+
queryLokiErrorLogs(requestParameters: SharedApiQueryLokiErrorLogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterRawLogResponse>;
|
|
10710
|
+
/**
|
|
10711
|
+
* Query pod logs through the Loki compatibility API.
|
|
10712
|
+
* @summary Query Loki pod logs
|
|
10713
|
+
* @param {SharedApiQueryLokiPodLogsRequest} requestParameters Request parameters.
|
|
10714
|
+
* @param {*} [options] Override http request option.
|
|
10715
|
+
* @throws {RequiredError}
|
|
10716
|
+
* @memberof SharedApiInterface
|
|
10717
|
+
*/
|
|
10718
|
+
queryLokiPodLogs(requestParameters: SharedApiQueryLokiPodLogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterRawLogResponse>;
|
|
10719
|
+
/**
|
|
10720
|
+
* Query running logs through the Loki compatibility API.
|
|
10721
|
+
* @summary Query Loki running logs
|
|
10722
|
+
* @param {SharedApiQueryLokiRunningLogsRequest} requestParameters Request parameters.
|
|
10723
|
+
* @param {*} [options] Override http request option.
|
|
10724
|
+
* @throws {RequiredError}
|
|
10725
|
+
* @memberof SharedApiInterface
|
|
10726
|
+
*/
|
|
10727
|
+
queryLokiRunningLogs(requestParameters: SharedApiQueryLokiRunningLogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterRawLogResponse>;
|
|
10728
|
+
/**
|
|
10729
|
+
* Query slow logs through the Loki compatibility API.
|
|
10730
|
+
* @summary Query Loki slow logs
|
|
10731
|
+
* @param {SharedApiQueryLokiSlowLogsRequest} requestParameters Request parameters.
|
|
10732
|
+
* @param {*} [options] Override http request option.
|
|
10733
|
+
* @throws {RequiredError}
|
|
10734
|
+
* @memberof SharedApiInterface
|
|
10735
|
+
*/
|
|
10736
|
+
queryLokiSlowLogs(requestParameters: SharedApiQueryLokiSlowLogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterExecutionLog>;
|
|
10394
10737
|
/**
|
|
10395
10738
|
* Query pod logs of a cluster
|
|
10396
10739
|
* @summary Query cluster pod logs
|
|
@@ -13229,28 +13572,101 @@ export interface SharedApiExportClusterLogsRequest {
|
|
|
13229
13572
|
readonly maxLines?: number;
|
|
13230
13573
|
}
|
|
13231
13574
|
/**
|
|
13232
|
-
* Request parameters for
|
|
13575
|
+
* Request parameters for exportLokiClusterLogs operation in SharedApi.
|
|
13233
13576
|
* @export
|
|
13234
|
-
* @interface
|
|
13577
|
+
* @interface SharedApiExportLokiClusterLogsRequest
|
|
13235
13578
|
*/
|
|
13236
|
-
export interface
|
|
13579
|
+
export interface SharedApiExportLokiClusterLogsRequest {
|
|
13237
13580
|
/**
|
|
13238
|
-
*
|
|
13581
|
+
*
|
|
13239
13582
|
* @type {string}
|
|
13240
|
-
* @memberof
|
|
13583
|
+
* @memberof SharedApiExportLokiClusterLogs
|
|
13241
13584
|
*/
|
|
13242
13585
|
readonly orgName: string;
|
|
13243
13586
|
/**
|
|
13244
|
-
*
|
|
13587
|
+
*
|
|
13245
13588
|
* @type {string}
|
|
13246
|
-
* @memberof
|
|
13589
|
+
* @memberof SharedApiExportLokiClusterLogs
|
|
13247
13590
|
*/
|
|
13248
13591
|
readonly clusterName: string;
|
|
13249
13592
|
/**
|
|
13250
|
-
*
|
|
13251
|
-
* @type {
|
|
13252
|
-
* @memberof
|
|
13253
|
-
*/
|
|
13593
|
+
* Log type: runninglog, errorlog, slow, auditlog
|
|
13594
|
+
* @type {string}
|
|
13595
|
+
* @memberof SharedApiExportLokiClusterLogs
|
|
13596
|
+
*/
|
|
13597
|
+
readonly logType: string;
|
|
13598
|
+
/**
|
|
13599
|
+
* Start time in epoch nanoseconds. If omitted, exports from the earliest available log
|
|
13600
|
+
* @type {number}
|
|
13601
|
+
* @memberof SharedApiExportLokiClusterLogs
|
|
13602
|
+
*/
|
|
13603
|
+
readonly startTime?: number;
|
|
13604
|
+
/**
|
|
13605
|
+
* End time in epoch nanoseconds. If omitted, exports up to the latest available log
|
|
13606
|
+
* @type {number}
|
|
13607
|
+
* @memberof SharedApiExportLokiClusterLogs
|
|
13608
|
+
*/
|
|
13609
|
+
readonly endTime?: number;
|
|
13610
|
+
/**
|
|
13611
|
+
* Export format: csv, raw, jsonl
|
|
13612
|
+
* @type {string}
|
|
13613
|
+
* @memberof SharedApiExportLokiClusterLogs
|
|
13614
|
+
*/
|
|
13615
|
+
readonly format?: string;
|
|
13616
|
+
/**
|
|
13617
|
+
*
|
|
13618
|
+
* @type {string}
|
|
13619
|
+
* @memberof SharedApiExportLokiClusterLogs
|
|
13620
|
+
*/
|
|
13621
|
+
readonly query?: string;
|
|
13622
|
+
/**
|
|
13623
|
+
*
|
|
13624
|
+
* @type {string}
|
|
13625
|
+
* @memberof SharedApiExportLokiClusterLogs
|
|
13626
|
+
*/
|
|
13627
|
+
readonly filename?: string;
|
|
13628
|
+
/**
|
|
13629
|
+
*
|
|
13630
|
+
* @type {string}
|
|
13631
|
+
* @memberof SharedApiExportLokiClusterLogs
|
|
13632
|
+
*/
|
|
13633
|
+
readonly componentName?: string;
|
|
13634
|
+
/**
|
|
13635
|
+
*
|
|
13636
|
+
* @type {string}
|
|
13637
|
+
* @memberof SharedApiExportLokiClusterLogs
|
|
13638
|
+
*/
|
|
13639
|
+
readonly instanceName?: string;
|
|
13640
|
+
/**
|
|
13641
|
+
* Maximum number of lines to export. Defaults to 100000 if omitted
|
|
13642
|
+
* @type {number}
|
|
13643
|
+
* @memberof SharedApiExportLokiClusterLogs
|
|
13644
|
+
*/
|
|
13645
|
+
readonly maxLines?: number;
|
|
13646
|
+
}
|
|
13647
|
+
/**
|
|
13648
|
+
* Request parameters for exportParameterTemplateFromCluster operation in SharedApi.
|
|
13649
|
+
* @export
|
|
13650
|
+
* @interface SharedApiExportParameterTemplateFromClusterRequest
|
|
13651
|
+
*/
|
|
13652
|
+
export interface SharedApiExportParameterTemplateFromClusterRequest {
|
|
13653
|
+
/**
|
|
13654
|
+
* name of the Org
|
|
13655
|
+
* @type {string}
|
|
13656
|
+
* @memberof SharedApiExportParameterTemplateFromCluster
|
|
13657
|
+
*/
|
|
13658
|
+
readonly orgName: string;
|
|
13659
|
+
/**
|
|
13660
|
+
* name of the cluster
|
|
13661
|
+
* @type {string}
|
|
13662
|
+
* @memberof SharedApiExportParameterTemplateFromCluster
|
|
13663
|
+
*/
|
|
13664
|
+
readonly clusterName: string;
|
|
13665
|
+
/**
|
|
13666
|
+
*
|
|
13667
|
+
* @type {ParamTplCreateFromCluster}
|
|
13668
|
+
* @memberof SharedApiExportParameterTemplateFromCluster
|
|
13669
|
+
*/
|
|
13254
13670
|
readonly body: ParamTplCreateFromCluster;
|
|
13255
13671
|
}
|
|
13256
13672
|
/**
|
|
@@ -14276,6 +14692,49 @@ export interface SharedApiGetKafkaTopicsRequest {
|
|
|
14276
14692
|
*/
|
|
14277
14693
|
readonly onlyNames?: boolean;
|
|
14278
14694
|
}
|
|
14695
|
+
/**
|
|
14696
|
+
* Request parameters for getLokiSlowLogStats operation in SharedApi.
|
|
14697
|
+
* @export
|
|
14698
|
+
* @interface SharedApiGetLokiSlowLogStatsRequest
|
|
14699
|
+
*/
|
|
14700
|
+
export interface SharedApiGetLokiSlowLogStatsRequest {
|
|
14701
|
+
/**
|
|
14702
|
+
*
|
|
14703
|
+
* @type {string}
|
|
14704
|
+
* @memberof SharedApiGetLokiSlowLogStats
|
|
14705
|
+
*/
|
|
14706
|
+
readonly orgName: string;
|
|
14707
|
+
/**
|
|
14708
|
+
*
|
|
14709
|
+
* @type {string}
|
|
14710
|
+
* @memberof SharedApiGetLokiSlowLogStats
|
|
14711
|
+
*/
|
|
14712
|
+
readonly clusterName: string;
|
|
14713
|
+
/**
|
|
14714
|
+
* Start time in epoch nanoseconds.
|
|
14715
|
+
* @type {string}
|
|
14716
|
+
* @memberof SharedApiGetLokiSlowLogStats
|
|
14717
|
+
*/
|
|
14718
|
+
readonly startTime: string;
|
|
14719
|
+
/**
|
|
14720
|
+
* End time in epoch nanoseconds.
|
|
14721
|
+
* @type {string}
|
|
14722
|
+
* @memberof SharedApiGetLokiSlowLogStats
|
|
14723
|
+
*/
|
|
14724
|
+
readonly endTime: string;
|
|
14725
|
+
/**
|
|
14726
|
+
*
|
|
14727
|
+
* @type {string}
|
|
14728
|
+
* @memberof SharedApiGetLokiSlowLogStats
|
|
14729
|
+
*/
|
|
14730
|
+
readonly componentName?: string;
|
|
14731
|
+
/**
|
|
14732
|
+
*
|
|
14733
|
+
* @type {string}
|
|
14734
|
+
* @memberof SharedApiGetLokiSlowLogStats
|
|
14735
|
+
*/
|
|
14736
|
+
readonly instanceName?: string;
|
|
14737
|
+
}
|
|
14279
14738
|
/**
|
|
14280
14739
|
* Request parameters for getMilvusRole operation in SharedApi.
|
|
14281
14740
|
* @export
|
|
@@ -17199,6 +17658,317 @@ export interface SharedApiQueryLogHitsRequest {
|
|
|
17199
17658
|
*/
|
|
17200
17659
|
readonly unclassifiedOnly?: boolean;
|
|
17201
17660
|
}
|
|
17661
|
+
/**
|
|
17662
|
+
* Request parameters for queryLokiAuditLogs operation in SharedApi.
|
|
17663
|
+
* @export
|
|
17664
|
+
* @interface SharedApiQueryLokiAuditLogsRequest
|
|
17665
|
+
*/
|
|
17666
|
+
export interface SharedApiQueryLokiAuditLogsRequest {
|
|
17667
|
+
/**
|
|
17668
|
+
*
|
|
17669
|
+
* @type {string}
|
|
17670
|
+
* @memberof SharedApiQueryLokiAuditLogs
|
|
17671
|
+
*/
|
|
17672
|
+
readonly orgName: string;
|
|
17673
|
+
/**
|
|
17674
|
+
*
|
|
17675
|
+
* @type {string}
|
|
17676
|
+
* @memberof SharedApiQueryLokiAuditLogs
|
|
17677
|
+
*/
|
|
17678
|
+
readonly clusterName: string;
|
|
17679
|
+
/**
|
|
17680
|
+
* Start time in epoch nanoseconds.
|
|
17681
|
+
* @type {string}
|
|
17682
|
+
* @memberof SharedApiQueryLokiAuditLogs
|
|
17683
|
+
*/
|
|
17684
|
+
readonly startTime: string;
|
|
17685
|
+
/**
|
|
17686
|
+
* End time in epoch nanoseconds.
|
|
17687
|
+
* @type {string}
|
|
17688
|
+
* @memberof SharedApiQueryLokiAuditLogs
|
|
17689
|
+
*/
|
|
17690
|
+
readonly endTime: string;
|
|
17691
|
+
/**
|
|
17692
|
+
*
|
|
17693
|
+
* @type {string}
|
|
17694
|
+
* @memberof SharedApiQueryLokiAuditLogs
|
|
17695
|
+
*/
|
|
17696
|
+
readonly limit?: string;
|
|
17697
|
+
/**
|
|
17698
|
+
*
|
|
17699
|
+
* @type {string}
|
|
17700
|
+
* @memberof SharedApiQueryLokiAuditLogs
|
|
17701
|
+
*/
|
|
17702
|
+
readonly componentName?: string;
|
|
17703
|
+
/**
|
|
17704
|
+
*
|
|
17705
|
+
* @type {string}
|
|
17706
|
+
* @memberof SharedApiQueryLokiAuditLogs
|
|
17707
|
+
*/
|
|
17708
|
+
readonly instanceName?: string;
|
|
17709
|
+
/**
|
|
17710
|
+
*
|
|
17711
|
+
* @type {SortType}
|
|
17712
|
+
* @memberof SharedApiQueryLokiAuditLogs
|
|
17713
|
+
*/
|
|
17714
|
+
readonly sortType?: SortType;
|
|
17715
|
+
}
|
|
17716
|
+
/**
|
|
17717
|
+
* Request parameters for queryLokiErrorLogs operation in SharedApi.
|
|
17718
|
+
* @export
|
|
17719
|
+
* @interface SharedApiQueryLokiErrorLogsRequest
|
|
17720
|
+
*/
|
|
17721
|
+
export interface SharedApiQueryLokiErrorLogsRequest {
|
|
17722
|
+
/**
|
|
17723
|
+
*
|
|
17724
|
+
* @type {string}
|
|
17725
|
+
* @memberof SharedApiQueryLokiErrorLogs
|
|
17726
|
+
*/
|
|
17727
|
+
readonly orgName: string;
|
|
17728
|
+
/**
|
|
17729
|
+
*
|
|
17730
|
+
* @type {string}
|
|
17731
|
+
* @memberof SharedApiQueryLokiErrorLogs
|
|
17732
|
+
*/
|
|
17733
|
+
readonly clusterName: string;
|
|
17734
|
+
/**
|
|
17735
|
+
* Start time in epoch nanoseconds.
|
|
17736
|
+
* @type {string}
|
|
17737
|
+
* @memberof SharedApiQueryLokiErrorLogs
|
|
17738
|
+
*/
|
|
17739
|
+
readonly startTime: string;
|
|
17740
|
+
/**
|
|
17741
|
+
* End time in epoch nanoseconds.
|
|
17742
|
+
* @type {string}
|
|
17743
|
+
* @memberof SharedApiQueryLokiErrorLogs
|
|
17744
|
+
*/
|
|
17745
|
+
readonly endTime: string;
|
|
17746
|
+
/**
|
|
17747
|
+
*
|
|
17748
|
+
* @type {string}
|
|
17749
|
+
* @memberof SharedApiQueryLokiErrorLogs
|
|
17750
|
+
*/
|
|
17751
|
+
readonly componentName?: string;
|
|
17752
|
+
/**
|
|
17753
|
+
*
|
|
17754
|
+
* @type {string}
|
|
17755
|
+
* @memberof SharedApiQueryLokiErrorLogs
|
|
17756
|
+
*/
|
|
17757
|
+
readonly instanceName?: string;
|
|
17758
|
+
/**
|
|
17759
|
+
*
|
|
17760
|
+
* @type {string}
|
|
17761
|
+
* @memberof SharedApiQueryLokiErrorLogs
|
|
17762
|
+
*/
|
|
17763
|
+
readonly filename?: string;
|
|
17764
|
+
/**
|
|
17765
|
+
*
|
|
17766
|
+
* @type {string}
|
|
17767
|
+
* @memberof SharedApiQueryLokiErrorLogs
|
|
17768
|
+
*/
|
|
17769
|
+
readonly query?: string;
|
|
17770
|
+
/**
|
|
17771
|
+
*
|
|
17772
|
+
* @type {string}
|
|
17773
|
+
* @memberof SharedApiQueryLokiErrorLogs
|
|
17774
|
+
*/
|
|
17775
|
+
readonly limit?: string;
|
|
17776
|
+
/**
|
|
17777
|
+
*
|
|
17778
|
+
* @type {SortType}
|
|
17779
|
+
* @memberof SharedApiQueryLokiErrorLogs
|
|
17780
|
+
*/
|
|
17781
|
+
readonly sortType?: SortType;
|
|
17782
|
+
}
|
|
17783
|
+
/**
|
|
17784
|
+
* Request parameters for queryLokiPodLogs operation in SharedApi.
|
|
17785
|
+
* @export
|
|
17786
|
+
* @interface SharedApiQueryLokiPodLogsRequest
|
|
17787
|
+
*/
|
|
17788
|
+
export interface SharedApiQueryLokiPodLogsRequest {
|
|
17789
|
+
/**
|
|
17790
|
+
*
|
|
17791
|
+
* @type {string}
|
|
17792
|
+
* @memberof SharedApiQueryLokiPodLogs
|
|
17793
|
+
*/
|
|
17794
|
+
readonly orgName: string;
|
|
17795
|
+
/**
|
|
17796
|
+
*
|
|
17797
|
+
* @type {string}
|
|
17798
|
+
* @memberof SharedApiQueryLokiPodLogs
|
|
17799
|
+
*/
|
|
17800
|
+
readonly clusterName: string;
|
|
17801
|
+
/**
|
|
17802
|
+
* Start time in epoch nanoseconds.
|
|
17803
|
+
* @type {string}
|
|
17804
|
+
* @memberof SharedApiQueryLokiPodLogs
|
|
17805
|
+
*/
|
|
17806
|
+
readonly startTime: string;
|
|
17807
|
+
/**
|
|
17808
|
+
* End time in epoch nanoseconds.
|
|
17809
|
+
* @type {string}
|
|
17810
|
+
* @memberof SharedApiQueryLokiPodLogs
|
|
17811
|
+
*/
|
|
17812
|
+
readonly endTime: string;
|
|
17813
|
+
/**
|
|
17814
|
+
*
|
|
17815
|
+
* @type {string}
|
|
17816
|
+
* @memberof SharedApiQueryLokiPodLogs
|
|
17817
|
+
*/
|
|
17818
|
+
readonly componentName?: string;
|
|
17819
|
+
/**
|
|
17820
|
+
*
|
|
17821
|
+
* @type {string}
|
|
17822
|
+
* @memberof SharedApiQueryLokiPodLogs
|
|
17823
|
+
*/
|
|
17824
|
+
readonly instanceName?: string;
|
|
17825
|
+
/**
|
|
17826
|
+
*
|
|
17827
|
+
* @type {string}
|
|
17828
|
+
* @memberof SharedApiQueryLokiPodLogs
|
|
17829
|
+
*/
|
|
17830
|
+
readonly filename?: string;
|
|
17831
|
+
/**
|
|
17832
|
+
*
|
|
17833
|
+
* @type {string}
|
|
17834
|
+
* @memberof SharedApiQueryLokiPodLogs
|
|
17835
|
+
*/
|
|
17836
|
+
readonly limit?: string;
|
|
17837
|
+
/**
|
|
17838
|
+
*
|
|
17839
|
+
* @type {SortType}
|
|
17840
|
+
* @memberof SharedApiQueryLokiPodLogs
|
|
17841
|
+
*/
|
|
17842
|
+
readonly sortType?: SortType;
|
|
17843
|
+
}
|
|
17844
|
+
/**
|
|
17845
|
+
* Request parameters for queryLokiRunningLogs operation in SharedApi.
|
|
17846
|
+
* @export
|
|
17847
|
+
* @interface SharedApiQueryLokiRunningLogsRequest
|
|
17848
|
+
*/
|
|
17849
|
+
export interface SharedApiQueryLokiRunningLogsRequest {
|
|
17850
|
+
/**
|
|
17851
|
+
*
|
|
17852
|
+
* @type {string}
|
|
17853
|
+
* @memberof SharedApiQueryLokiRunningLogs
|
|
17854
|
+
*/
|
|
17855
|
+
readonly orgName: string;
|
|
17856
|
+
/**
|
|
17857
|
+
*
|
|
17858
|
+
* @type {string}
|
|
17859
|
+
* @memberof SharedApiQueryLokiRunningLogs
|
|
17860
|
+
*/
|
|
17861
|
+
readonly clusterName: string;
|
|
17862
|
+
/**
|
|
17863
|
+
* Start time in epoch nanoseconds.
|
|
17864
|
+
* @type {string}
|
|
17865
|
+
* @memberof SharedApiQueryLokiRunningLogs
|
|
17866
|
+
*/
|
|
17867
|
+
readonly startTime: string;
|
|
17868
|
+
/**
|
|
17869
|
+
* End time in epoch nanoseconds.
|
|
17870
|
+
* @type {string}
|
|
17871
|
+
* @memberof SharedApiQueryLokiRunningLogs
|
|
17872
|
+
*/
|
|
17873
|
+
readonly endTime: string;
|
|
17874
|
+
/**
|
|
17875
|
+
*
|
|
17876
|
+
* @type {string}
|
|
17877
|
+
* @memberof SharedApiQueryLokiRunningLogs
|
|
17878
|
+
*/
|
|
17879
|
+
readonly componentName?: string;
|
|
17880
|
+
/**
|
|
17881
|
+
*
|
|
17882
|
+
* @type {string}
|
|
17883
|
+
* @memberof SharedApiQueryLokiRunningLogs
|
|
17884
|
+
*/
|
|
17885
|
+
readonly instanceName?: string;
|
|
17886
|
+
/**
|
|
17887
|
+
*
|
|
17888
|
+
* @type {string}
|
|
17889
|
+
* @memberof SharedApiQueryLokiRunningLogs
|
|
17890
|
+
*/
|
|
17891
|
+
readonly filename?: string;
|
|
17892
|
+
/**
|
|
17893
|
+
*
|
|
17894
|
+
* @type {string}
|
|
17895
|
+
* @memberof SharedApiQueryLokiRunningLogs
|
|
17896
|
+
*/
|
|
17897
|
+
readonly limit?: string;
|
|
17898
|
+
/**
|
|
17899
|
+
*
|
|
17900
|
+
* @type {string}
|
|
17901
|
+
* @memberof SharedApiQueryLokiRunningLogs
|
|
17902
|
+
*/
|
|
17903
|
+
readonly query?: string;
|
|
17904
|
+
/**
|
|
17905
|
+
*
|
|
17906
|
+
* @type {SortType}
|
|
17907
|
+
* @memberof SharedApiQueryLokiRunningLogs
|
|
17908
|
+
*/
|
|
17909
|
+
readonly sortType?: SortType;
|
|
17910
|
+
}
|
|
17911
|
+
/**
|
|
17912
|
+
* Request parameters for queryLokiSlowLogs operation in SharedApi.
|
|
17913
|
+
* @export
|
|
17914
|
+
* @interface SharedApiQueryLokiSlowLogsRequest
|
|
17915
|
+
*/
|
|
17916
|
+
export interface SharedApiQueryLokiSlowLogsRequest {
|
|
17917
|
+
/**
|
|
17918
|
+
*
|
|
17919
|
+
* @type {string}
|
|
17920
|
+
* @memberof SharedApiQueryLokiSlowLogs
|
|
17921
|
+
*/
|
|
17922
|
+
readonly orgName: string;
|
|
17923
|
+
/**
|
|
17924
|
+
*
|
|
17925
|
+
* @type {string}
|
|
17926
|
+
* @memberof SharedApiQueryLokiSlowLogs
|
|
17927
|
+
*/
|
|
17928
|
+
readonly clusterName: string;
|
|
17929
|
+
/**
|
|
17930
|
+
* Start time in epoch nanoseconds.
|
|
17931
|
+
* @type {string}
|
|
17932
|
+
* @memberof SharedApiQueryLokiSlowLogs
|
|
17933
|
+
*/
|
|
17934
|
+
readonly startTime: string;
|
|
17935
|
+
/**
|
|
17936
|
+
* End time in epoch nanoseconds.
|
|
17937
|
+
* @type {string}
|
|
17938
|
+
* @memberof SharedApiQueryLokiSlowLogs
|
|
17939
|
+
*/
|
|
17940
|
+
readonly endTime: string;
|
|
17941
|
+
/**
|
|
17942
|
+
*
|
|
17943
|
+
* @type {string}
|
|
17944
|
+
* @memberof SharedApiQueryLokiSlowLogs
|
|
17945
|
+
*/
|
|
17946
|
+
readonly componentName?: string;
|
|
17947
|
+
/**
|
|
17948
|
+
*
|
|
17949
|
+
* @type {string}
|
|
17950
|
+
* @memberof SharedApiQueryLokiSlowLogs
|
|
17951
|
+
*/
|
|
17952
|
+
readonly instanceName?: string;
|
|
17953
|
+
/**
|
|
17954
|
+
*
|
|
17955
|
+
* @type {string}
|
|
17956
|
+
* @memberof SharedApiQueryLokiSlowLogs
|
|
17957
|
+
*/
|
|
17958
|
+
readonly query?: string;
|
|
17959
|
+
/**
|
|
17960
|
+
*
|
|
17961
|
+
* @type {string}
|
|
17962
|
+
* @memberof SharedApiQueryLokiSlowLogs
|
|
17963
|
+
*/
|
|
17964
|
+
readonly limit?: string;
|
|
17965
|
+
/**
|
|
17966
|
+
*
|
|
17967
|
+
* @type {SortType}
|
|
17968
|
+
* @memberof SharedApiQueryLokiSlowLogs
|
|
17969
|
+
*/
|
|
17970
|
+
readonly sortType?: SortType;
|
|
17971
|
+
}
|
|
17202
17972
|
/**
|
|
17203
17973
|
* Request parameters for queryPodLogs operation in SharedApi.
|
|
17204
17974
|
* @export
|
|
@@ -19936,6 +20706,15 @@ export declare class SharedApi extends BaseAPI implements SharedApiInterface {
|
|
|
19936
20706
|
* @memberof SharedApi
|
|
19937
20707
|
*/
|
|
19938
20708
|
exportClusterLogs(requestParameters: SharedApiExportClusterLogsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
|
|
20709
|
+
/**
|
|
20710
|
+
* Export logs through the Loki compatibility API.
|
|
20711
|
+
* @summary Export Loki logs
|
|
20712
|
+
* @param {SharedApiExportLokiClusterLogsRequest} requestParameters Request parameters.
|
|
20713
|
+
* @param {*} [options] Override http request option.
|
|
20714
|
+
* @throws {RequiredError}
|
|
20715
|
+
* @memberof SharedApi
|
|
20716
|
+
*/
|
|
20717
|
+
exportLokiClusterLogs(requestParameters: SharedApiExportLokiClusterLogsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
|
|
19939
20718
|
/**
|
|
19940
20719
|
*
|
|
19941
20720
|
* @summary Export parameter template from cluster
|
|
@@ -20297,6 +21076,15 @@ export declare class SharedApi extends BaseAPI implements SharedApiInterface {
|
|
|
20297
21076
|
* @memberof SharedApi
|
|
20298
21077
|
*/
|
|
20299
21078
|
getKafkaTopics(requestParameters: SharedApiGetKafkaTopicsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Topic[], any, {}>>;
|
|
21079
|
+
/**
|
|
21080
|
+
* Query slow-log statistics through the Loki compatibility API.
|
|
21081
|
+
* @summary Query Loki slow-log statistics
|
|
21082
|
+
* @param {SharedApiGetLokiSlowLogStatsRequest} requestParameters Request parameters.
|
|
21083
|
+
* @param {*} [options] Override http request option.
|
|
21084
|
+
* @throws {RequiredError}
|
|
21085
|
+
* @memberof SharedApi
|
|
21086
|
+
*/
|
|
21087
|
+
getLokiSlowLogStats(requestParameters: SharedApiGetLokiSlowLogStatsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClusterSlowLogStats, any, {}>>;
|
|
20300
21088
|
/**
|
|
20301
21089
|
* Get a Milvus native role and its privilege grants.
|
|
20302
21090
|
* @summary Get Milvus role
|
|
@@ -21201,6 +21989,51 @@ export declare class SharedApi extends BaseAPI implements SharedApiInterface {
|
|
|
21201
21989
|
* @memberof SharedApi
|
|
21202
21990
|
*/
|
|
21203
21991
|
queryLogHits(requestParameters: SharedApiQueryLogHitsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClusterLogHitsResponse, any, {}>>;
|
|
21992
|
+
/**
|
|
21993
|
+
* Query audit logs through the Loki compatibility API.
|
|
21994
|
+
* @summary Query Loki audit logs
|
|
21995
|
+
* @param {SharedApiQueryLokiAuditLogsRequest} requestParameters Request parameters.
|
|
21996
|
+
* @param {*} [options] Override http request option.
|
|
21997
|
+
* @throws {RequiredError}
|
|
21998
|
+
* @memberof SharedApi
|
|
21999
|
+
*/
|
|
22000
|
+
queryLokiAuditLogs(requestParameters: SharedApiQueryLokiAuditLogsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClusterExecutionLog, any, {}>>;
|
|
22001
|
+
/**
|
|
22002
|
+
* Query error logs through the Loki compatibility API.
|
|
22003
|
+
* @summary Query Loki error logs
|
|
22004
|
+
* @param {SharedApiQueryLokiErrorLogsRequest} requestParameters Request parameters.
|
|
22005
|
+
* @param {*} [options] Override http request option.
|
|
22006
|
+
* @throws {RequiredError}
|
|
22007
|
+
* @memberof SharedApi
|
|
22008
|
+
*/
|
|
22009
|
+
queryLokiErrorLogs(requestParameters: SharedApiQueryLokiErrorLogsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClusterRawLogResponse, any, {}>>;
|
|
22010
|
+
/**
|
|
22011
|
+
* Query pod logs through the Loki compatibility API.
|
|
22012
|
+
* @summary Query Loki pod logs
|
|
22013
|
+
* @param {SharedApiQueryLokiPodLogsRequest} requestParameters Request parameters.
|
|
22014
|
+
* @param {*} [options] Override http request option.
|
|
22015
|
+
* @throws {RequiredError}
|
|
22016
|
+
* @memberof SharedApi
|
|
22017
|
+
*/
|
|
22018
|
+
queryLokiPodLogs(requestParameters: SharedApiQueryLokiPodLogsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClusterRawLogResponse, any, {}>>;
|
|
22019
|
+
/**
|
|
22020
|
+
* Query running logs through the Loki compatibility API.
|
|
22021
|
+
* @summary Query Loki running logs
|
|
22022
|
+
* @param {SharedApiQueryLokiRunningLogsRequest} requestParameters Request parameters.
|
|
22023
|
+
* @param {*} [options] Override http request option.
|
|
22024
|
+
* @throws {RequiredError}
|
|
22025
|
+
* @memberof SharedApi
|
|
22026
|
+
*/
|
|
22027
|
+
queryLokiRunningLogs(requestParameters: SharedApiQueryLokiRunningLogsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClusterRawLogResponse, any, {}>>;
|
|
22028
|
+
/**
|
|
22029
|
+
* Query slow logs through the Loki compatibility API.
|
|
22030
|
+
* @summary Query Loki slow logs
|
|
22031
|
+
* @param {SharedApiQueryLokiSlowLogsRequest} requestParameters Request parameters.
|
|
22032
|
+
* @param {*} [options] Override http request option.
|
|
22033
|
+
* @throws {RequiredError}
|
|
22034
|
+
* @memberof SharedApi
|
|
22035
|
+
*/
|
|
22036
|
+
queryLokiSlowLogs(requestParameters: SharedApiQueryLokiSlowLogsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClusterExecutionLog, any, {}>>;
|
|
21204
22037
|
/**
|
|
21205
22038
|
* Query pod logs of a cluster
|
|
21206
22039
|
* @summary Query cluster pod logs
|