tencentcloud-sdk-nodejs-apm 4.1.71 → 4.1.82
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
|
@@ -177,6 +177,14 @@ export interface ModifyApmInstanceRequest {
|
|
|
177
177
|
* 是否开启反序列化检测(0-关闭,1-开启)
|
|
178
178
|
*/
|
|
179
179
|
IsDeserializationAnalysis?: number;
|
|
180
|
+
/**
|
|
181
|
+
* URL长分段收敛阈值
|
|
182
|
+
*/
|
|
183
|
+
UrlLongSegmentThreshold?: number;
|
|
184
|
+
/**
|
|
185
|
+
* URL数字分段收敛阈值
|
|
186
|
+
*/
|
|
187
|
+
UrlNumberSegmentThreshold?: number;
|
|
180
188
|
}
|
|
181
189
|
/**
|
|
182
190
|
* APM 业务系统信息
|
|
@@ -404,6 +412,14 @@ export interface ApmInstanceDetail {
|
|
|
404
412
|
* 业务系统鉴权 token
|
|
405
413
|
*/
|
|
406
414
|
Token?: string;
|
|
415
|
+
/**
|
|
416
|
+
* URL长分段收敛阈值
|
|
417
|
+
*/
|
|
418
|
+
UrlLongSegmentThreshold?: number;
|
|
419
|
+
/**
|
|
420
|
+
* URL数字分段收敛阈值
|
|
421
|
+
*/
|
|
422
|
+
UrlNumberSegmentThreshold?: number;
|
|
407
423
|
}
|
|
408
424
|
/**
|
|
409
425
|
* CreateApmInstance请求参数结构体
|