tencentcloud-sdk-nodejs-apm 4.1.202 → 4.1.210
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/package.json
CHANGED
|
@@ -381,25 +381,29 @@ export interface DescribeApmServiceMetricResponse {
|
|
|
381
381
|
*/
|
|
382
382
|
export interface ModifyApmAssociationRequest {
|
|
383
383
|
/**
|
|
384
|
-
*
|
|
384
|
+
* <p>关联的产品名,当前只支持Prometheus、CKafka</p>
|
|
385
385
|
*/
|
|
386
386
|
ProductName: string;
|
|
387
387
|
/**
|
|
388
|
-
*
|
|
388
|
+
* <p>关联关系的状态:// 关联关系状态:1(启用)、2(不启用)</p>
|
|
389
389
|
*/
|
|
390
390
|
Status: number;
|
|
391
391
|
/**
|
|
392
|
-
*
|
|
392
|
+
* <p>业务系统ID</p>
|
|
393
393
|
*/
|
|
394
394
|
InstanceId: string;
|
|
395
395
|
/**
|
|
396
|
-
*
|
|
396
|
+
* <p>关联的产品实例ID</p>
|
|
397
397
|
*/
|
|
398
398
|
PeerId?: string;
|
|
399
399
|
/**
|
|
400
|
-
* CKafka
|
|
400
|
+
* <p>CKafka消息主题</p>
|
|
401
401
|
*/
|
|
402
402
|
Topic?: string;
|
|
403
|
+
/**
|
|
404
|
+
* <p>Ckafka消息主题</p>
|
|
405
|
+
*/
|
|
406
|
+
MetricTopic?: string;
|
|
403
407
|
}
|
|
404
408
|
/**
|
|
405
409
|
* DescribeGeneralOTSpanList返回参数结构体
|
|
@@ -3060,19 +3064,23 @@ export interface DescribeGeneralSpanListResponse {
|
|
|
3060
3064
|
*/
|
|
3061
3065
|
export interface ApmAssociation {
|
|
3062
3066
|
/**
|
|
3063
|
-
*
|
|
3067
|
+
* <p>关联产品的实例ID</p>
|
|
3064
3068
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3065
3069
|
*/
|
|
3066
3070
|
PeerId?: string;
|
|
3067
3071
|
/**
|
|
3068
|
-
*
|
|
3072
|
+
* <p>关联关系状态:1(启用)、2(不启用)、3(已失效)</p>
|
|
3069
3073
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3070
3074
|
*/
|
|
3071
3075
|
Status?: number;
|
|
3072
3076
|
/**
|
|
3073
|
-
* CKafka
|
|
3077
|
+
* <p>CKafka消息主题</p>
|
|
3074
3078
|
*/
|
|
3075
3079
|
Topic?: string;
|
|
3080
|
+
/**
|
|
3081
|
+
* <p>Ckafka消费主题</p><p>用于Kafka指标投递</p>
|
|
3082
|
+
*/
|
|
3083
|
+
MetricTopic?: string;
|
|
3076
3084
|
}
|
|
3077
3085
|
/**
|
|
3078
3086
|
* 资源层信息
|