tencentcloud-sdk-nodejs-apm 4.1.198 → 4.1.203
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
|
@@ -1175,6 +1175,10 @@ export interface ApmAppConfig {
|
|
|
1175
1175
|
* <p>响应时间预警阈值(ms),用于判断应用健康状态为"黄色"</p>
|
|
1176
1176
|
*/
|
|
1177
1177
|
ResponseDurationWarningThreshold?: number;
|
|
1178
|
+
/**
|
|
1179
|
+
* <p>是否默认使用探针自带熔断阈值</p>
|
|
1180
|
+
*/
|
|
1181
|
+
UseDefaultFuseConfig?: boolean;
|
|
1178
1182
|
}
|
|
1179
1183
|
/**
|
|
1180
1184
|
* CreateApmSampleConfig返回参数结构体
|
|
@@ -2977,6 +2981,10 @@ export interface ApmApplicationConfigView {
|
|
|
2977
2981
|
* <p>响应时间预警阈值</p><p>单位:ms</p>
|
|
2978
2982
|
*/
|
|
2979
2983
|
ResponseDurationWarningThreshold?: number;
|
|
2984
|
+
/**
|
|
2985
|
+
* <p>是否使用探针默认熔断阈值</p>
|
|
2986
|
+
*/
|
|
2987
|
+
UseDefaultFuseConfig?: boolean;
|
|
2980
2988
|
}
|
|
2981
2989
|
/**
|
|
2982
2990
|
* 排序字段
|
|
@@ -3331,6 +3339,10 @@ export interface ModifyApmApplicationConfigRequest {
|
|
|
3331
3339
|
* <p>响应时间预警阈值(ms),用于判断应用健康状态为"黄色"</p>
|
|
3332
3340
|
*/
|
|
3333
3341
|
ResponseDurationWarningThreshold?: number;
|
|
3342
|
+
/**
|
|
3343
|
+
* <p>是否使用探针默认熔断阈值</p>
|
|
3344
|
+
*/
|
|
3345
|
+
UseDefaultFuseConfig?: boolean;
|
|
3334
3346
|
}
|
|
3335
3347
|
/**
|
|
3336
3348
|
* ModifyGeneralApmApplicationConfig返回参数结构体
|