tencentcloud-sdk-nodejs-apm 4.1.249 → 4.1.259

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-apm",
3
- "version": "4.1.249",
3
+ "version": "4.1.259",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -1200,6 +1200,22 @@ export interface ApmAppConfig {
1200
1200
  * <p>是否默认使用探针自带熔断阈值</p>
1201
1201
  */
1202
1202
  UseDefaultFuseConfig?: boolean;
1203
+ /**
1204
+ * <p>是否开启自动分析</p>
1205
+ */
1206
+ AnalysisAutoEnable?: boolean;
1207
+ /**
1208
+ * <p>头采样开关</p>
1209
+ */
1210
+ EnableHeadSampler?: boolean;
1211
+ /**
1212
+ * <p>头采样类型</p><p>枚举值:</p><ul><li>parentbased_traceidratio: 跟随父类型</li></ul>
1213
+ */
1214
+ HeadSamplerType?: string;
1215
+ /**
1216
+ * <p>采样阈值,100等于关闭采样,0表示全采样</p>
1217
+ */
1218
+ HeadSamplerArg?: number;
1203
1219
  }
1204
1220
  /**
1205
1221
  * CreateApmSampleConfig返回参数结构体
@@ -3443,6 +3459,18 @@ export interface ModifyApmApplicationConfigRequest {
3443
3459
  * <p>是否使用探针默认熔断阈值</p>
3444
3460
  */
3445
3461
  UseDefaultFuseConfig?: boolean;
3462
+ /**
3463
+ * <p>是否开启探针头采样</p>
3464
+ */
3465
+ EnableHeadSampler?: boolean;
3466
+ /**
3467
+ * <p>头采样类型</p><p>枚举值:</p><ul><li>parentbased_traceidratio: 跟随parent</li></ul>
3468
+ */
3469
+ HeadSamplerType?: string;
3470
+ /**
3471
+ * <p>采样率</p><p>取值范围:[0, 100]</p><p>默认值:100</p>
3472
+ */
3473
+ HeadSamplerArg?: number;
3446
3474
  }
3447
3475
  /**
3448
3476
  * ModifyGeneralApmApplicationConfig返回参数结构体