tencentcloud-sdk-nodejs-apm 4.1.210 → 4.1.219
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
|
@@ -410,15 +410,11 @@ export interface ModifyApmAssociationRequest {
|
|
|
410
410
|
*/
|
|
411
411
|
export interface DescribeGeneralOTSpanListResponse {
|
|
412
412
|
/**
|
|
413
|
-
*
|
|
413
|
+
* <p>总数量</p>
|
|
414
414
|
*/
|
|
415
415
|
TotalCount?: number;
|
|
416
416
|
/**
|
|
417
|
-
* Spans
|
|
418
|
-
1. 将Spans字段中的文本进行 Base64 解码,得到经过压缩后字节数组。
|
|
419
|
-
2. 使用 gzip 对压缩后的字节数组进行解压,得到压缩前的字节数组。
|
|
420
|
-
3. 使用 UTF-8 字符集,将压缩前的字节数组转换为文本。
|
|
421
|
-
|
|
417
|
+
* <p>Spans字段中包含了链路数据的全部内容,由于数据经过了压缩,需要对结果进行如下三步转换,以还原始的文本。</p><ol><li>将Spans字段中的文本进行 Base64 解码,得到经过压缩后字节数组。</li><li>使用 gzip 对压缩后的字节数组进行解压,得到压缩前的字节数组。</li><li>使用 UTF-8 字符集,将压缩前的字节数组转换为文本。</li></ol>
|
|
422
418
|
*/
|
|
423
419
|
Spans?: string;
|
|
424
420
|
/**
|
|
@@ -1253,45 +1249,35 @@ export interface APMKVItem {
|
|
|
1253
1249
|
*/
|
|
1254
1250
|
export interface DescribeGeneralSpanListRequest {
|
|
1255
1251
|
/**
|
|
1256
|
-
*
|
|
1252
|
+
* <p>业务系统 ID</p>
|
|
1257
1253
|
*/
|
|
1258
1254
|
InstanceId: string;
|
|
1259
1255
|
/**
|
|
1260
|
-
* Span
|
|
1256
|
+
* <p>Span 查询开始时间戳(单位:秒)</p>
|
|
1261
1257
|
*/
|
|
1262
1258
|
StartTime: number;
|
|
1263
1259
|
/**
|
|
1264
|
-
* Span
|
|
1260
|
+
* <p>Span 查询结束时间戳(单位:秒)</p>
|
|
1265
1261
|
*/
|
|
1266
1262
|
EndTime: number;
|
|
1267
1263
|
/**
|
|
1268
|
-
*
|
|
1264
|
+
* <p>通用过滤参数 支持的过滤key如service.name</p>
|
|
1269
1265
|
*/
|
|
1270
1266
|
Filters?: Array<Filter>;
|
|
1271
1267
|
/**
|
|
1272
|
-
*
|
|
1273
|
-
现支持的 Key 有:
|
|
1274
|
-
|
|
1275
|
-
- startTime(开始时间)
|
|
1276
|
-
- endTime(结束时间)
|
|
1277
|
-
- duration(响应时间)
|
|
1278
|
-
|
|
1279
|
-
现支持的 Value 有:
|
|
1280
|
-
|
|
1281
|
-
- desc(降序排序)
|
|
1282
|
-
- asc(升序排序)
|
|
1268
|
+
* <p>排序<br>现支持的 Key 有:</p><ul><li>startTime(开始时间)</li><li>endTime(结束时间)</li><li>duration(响应时间)</li></ul><p>现支持的 Value 有:</p><ul><li>desc(降序排序)</li><li>asc(升序排序)</li></ul>
|
|
1283
1269
|
*/
|
|
1284
1270
|
OrderBy?: OrderBy;
|
|
1285
1271
|
/**
|
|
1286
|
-
*
|
|
1272
|
+
* <p>业务自身服务名,控制台用户请填写taw</p>
|
|
1287
1273
|
*/
|
|
1288
1274
|
BusinessName?: string;
|
|
1289
1275
|
/**
|
|
1290
|
-
*
|
|
1276
|
+
* <p>单页项目个数,默认为1000,合法取值范围为1~1000</p>
|
|
1291
1277
|
*/
|
|
1292
1278
|
Limit?: number;
|
|
1293
1279
|
/**
|
|
1294
|
-
*
|
|
1280
|
+
* <p>分页</p>
|
|
1295
1281
|
*/
|
|
1296
1282
|
Offset?: number;
|
|
1297
1283
|
}
|
|
@@ -1955,15 +1941,15 @@ export interface DescribeApmSQLInjectionDetailRequest {
|
|
|
1955
1941
|
*/
|
|
1956
1942
|
export interface Filter {
|
|
1957
1943
|
/**
|
|
1958
|
-
*
|
|
1944
|
+
* <p>过滤方式(=, !=, in)</p>
|
|
1959
1945
|
*/
|
|
1960
1946
|
Type: string;
|
|
1961
1947
|
/**
|
|
1962
|
-
*
|
|
1948
|
+
* <p>过滤维度名</p><p>详情参考实际接口字段描述</p>
|
|
1963
1949
|
*/
|
|
1964
1950
|
Key: string;
|
|
1965
1951
|
/**
|
|
1966
|
-
*
|
|
1952
|
+
* <p>过滤值,in过滤方式用逗号分割多个值</p>
|
|
1967
1953
|
*/
|
|
1968
1954
|
Value: string;
|
|
1969
1955
|
}
|
|
@@ -1972,45 +1958,35 @@ export interface Filter {
|
|
|
1972
1958
|
*/
|
|
1973
1959
|
export interface DescribeGeneralOTSpanListRequest {
|
|
1974
1960
|
/**
|
|
1975
|
-
*
|
|
1961
|
+
* <p>业务系统 ID</p>
|
|
1976
1962
|
*/
|
|
1977
1963
|
InstanceId: string;
|
|
1978
1964
|
/**
|
|
1979
|
-
* Span
|
|
1965
|
+
* <p>Span 查询开始时间戳(单位:秒)</p>
|
|
1980
1966
|
*/
|
|
1981
1967
|
StartTime: number;
|
|
1982
1968
|
/**
|
|
1983
|
-
* Span
|
|
1969
|
+
* <p>Span 查询结束时间戳(单位:秒)</p>
|
|
1984
1970
|
*/
|
|
1985
1971
|
EndTime: number;
|
|
1986
1972
|
/**
|
|
1987
|
-
*
|
|
1973
|
+
* <p>通用过滤参数 支持的过滤key如service.name</p>
|
|
1988
1974
|
*/
|
|
1989
1975
|
Filters?: Array<Filter>;
|
|
1990
1976
|
/**
|
|
1991
|
-
*
|
|
1992
|
-
现支持的 Key 有:
|
|
1993
|
-
|
|
1994
|
-
- startTime(开始时间)
|
|
1995
|
-
- endTime(结束时间)
|
|
1996
|
-
- duration(响应时间)
|
|
1997
|
-
|
|
1998
|
-
现支持的 Value 有:
|
|
1999
|
-
|
|
2000
|
-
- desc(降序排序)
|
|
2001
|
-
- asc(升序排序)
|
|
1977
|
+
* <p>排序<br>现支持的 Key 有:</p><ul><li>startTime(开始时间)</li><li>endTime(结束时间)</li><li>duration(响应时间)</li></ul><p>现支持的 Value 有:</p><ul><li>desc(降序排序)</li><li>asc(升序排序)</li></ul>
|
|
2002
1978
|
*/
|
|
2003
1979
|
OrderBy?: OrderBy;
|
|
2004
1980
|
/**
|
|
2005
|
-
*
|
|
1981
|
+
* <p>业务自身服务名,控制台用户请填写taw</p>
|
|
2006
1982
|
*/
|
|
2007
1983
|
BusinessName?: string;
|
|
2008
1984
|
/**
|
|
2009
|
-
*
|
|
1985
|
+
* <p>单页项目个数,默认为10000,合法取值范围为0~10000</p>
|
|
2010
1986
|
*/
|
|
2011
1987
|
Limit?: number;
|
|
2012
1988
|
/**
|
|
2013
|
-
*
|
|
1989
|
+
* <p>分页</p>
|
|
2014
1990
|
*/
|
|
2015
1991
|
Offset?: number;
|
|
2016
1992
|
}
|
|
@@ -3047,11 +3023,11 @@ export interface ApmField {
|
|
|
3047
3023
|
*/
|
|
3048
3024
|
export interface DescribeGeneralSpanListResponse {
|
|
3049
3025
|
/**
|
|
3050
|
-
*
|
|
3026
|
+
* <p>总数量</p>
|
|
3051
3027
|
*/
|
|
3052
3028
|
TotalCount?: number;
|
|
3053
3029
|
/**
|
|
3054
|
-
* Span
|
|
3030
|
+
* <p>Span 分页列表</p>
|
|
3055
3031
|
*/
|
|
3056
3032
|
Spans?: Array<Span>;
|
|
3057
3033
|
/**
|