tencentcloud-sdk-nodejs-apm 4.1.35 → 4.1.37
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
|
@@ -122,11 +122,11 @@ export interface ModifyApmInstanceRequest {
|
|
|
122
122
|
*/
|
|
123
123
|
IsMemoryHijackingAnalysis?: number;
|
|
124
124
|
/**
|
|
125
|
-
* 0=全文索引,1=键值索引
|
|
125
|
+
* CLS索引类型(0=全文索引,1=键值索引)
|
|
126
126
|
*/
|
|
127
127
|
LogIndexType?: number;
|
|
128
128
|
/**
|
|
129
|
-
* traceId的索引key
|
|
129
|
+
* traceId的索引key: 当CLS索引类型为键值索引时生效
|
|
130
130
|
*/
|
|
131
131
|
LogTraceIdKey?: string;
|
|
132
132
|
}
|
|
@@ -296,6 +296,14 @@ export interface ApmInstanceDetail {
|
|
|
296
296
|
* 是否开内存马执行检测(0=关, 1=开)
|
|
297
297
|
*/
|
|
298
298
|
IsMemoryHijackingAnalysis?: number;
|
|
299
|
+
/**
|
|
300
|
+
* CLS索引类型(0=全文索引,1=键值索引)
|
|
301
|
+
*/
|
|
302
|
+
LogIndexType?: number;
|
|
303
|
+
/**
|
|
304
|
+
* traceId的索引key: 当CLS索引类型为键值索引时生效
|
|
305
|
+
*/
|
|
306
|
+
LogTraceIdKey?: string;
|
|
299
307
|
}
|
|
300
308
|
/**
|
|
301
309
|
* CreateApmInstance请求参数结构体
|