tencentcloud-sdk-nodejs-apm 4.0.247 → 4.0.251
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/CHANGELOG.md +1124 -127
- package/package.json +1 -1
- package/products.md +42 -40
- package/src/services/apm/v20210622/apm_client.ts +31 -1
- package/src/services/apm/v20210622/apm_models.ts +216 -8
- package/tencentcloud/services/apm/v20210622/apm_client.d.ts +9 -1
- package/tencentcloud/services/apm/v20210622/apm_client.js +12 -0
- package/tencentcloud/services/apm/v20210622/apm_models.d.ts +184 -8
|
@@ -1,23 +1,134 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
2
|
+
* CreateApmInstance返回参数结构体
|
|
3
3
|
*/
|
|
4
|
-
export interface
|
|
4
|
+
export interface CreateApmInstanceResponse {
|
|
5
|
+
/**
|
|
6
|
+
* 实例ID
|
|
7
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8
|
+
*/
|
|
9
|
+
InstanceId: string;
|
|
10
|
+
/**
|
|
11
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
12
|
+
*/
|
|
13
|
+
RequestId?: string;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* apm实例信息
|
|
17
|
+
*/
|
|
18
|
+
export interface ApmInstanceDetail {
|
|
19
|
+
/**
|
|
20
|
+
* 存储使用量(MB)
|
|
21
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
22
|
+
*/
|
|
23
|
+
AmountOfUsedStorage: number;
|
|
24
|
+
/**
|
|
25
|
+
* 实例名
|
|
26
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
27
|
+
*/
|
|
28
|
+
Name: string;
|
|
29
|
+
/**
|
|
30
|
+
* 实例所属tag列表
|
|
31
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
32
|
+
*/
|
|
33
|
+
Tags: Array<ApmTag>;
|
|
5
34
|
/**
|
|
6
35
|
* 实例ID
|
|
7
36
|
*/
|
|
8
37
|
InstanceId: string;
|
|
9
38
|
/**
|
|
10
|
-
|
|
39
|
+
* 创建人Uin
|
|
40
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
41
|
+
*/
|
|
42
|
+
CreateUin: string;
|
|
43
|
+
/**
|
|
44
|
+
* 该实例已上报的服务数
|
|
45
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
46
|
+
*/
|
|
47
|
+
ServiceCount: number;
|
|
48
|
+
/**
|
|
49
|
+
* 日均上报Span数
|
|
50
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
51
|
+
*/
|
|
52
|
+
CountOfReportSpanPerDay: number;
|
|
53
|
+
/**
|
|
54
|
+
* AppId信息
|
|
11
55
|
*/
|
|
12
|
-
|
|
56
|
+
AppId: number;
|
|
13
57
|
/**
|
|
14
|
-
|
|
58
|
+
* Trace数据保存时长
|
|
59
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
60
|
+
*/
|
|
61
|
+
TraceDuration: number;
|
|
62
|
+
/**
|
|
63
|
+
* 实例描述信息
|
|
64
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
65
|
+
*/
|
|
66
|
+
Description: string;
|
|
67
|
+
/**
|
|
68
|
+
* 实例状态
|
|
69
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
70
|
+
*/
|
|
71
|
+
Status: number;
|
|
72
|
+
/**
|
|
73
|
+
* 实例所属地域
|
|
74
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
75
|
+
*/
|
|
76
|
+
Region: string;
|
|
77
|
+
/**
|
|
78
|
+
* 实例上报额度
|
|
79
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
80
|
+
*/
|
|
81
|
+
SpanDailyCounters: number;
|
|
82
|
+
/**
|
|
83
|
+
* 实例是否开通计费
|
|
84
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
85
|
+
*/
|
|
86
|
+
BillingInstance: number;
|
|
87
|
+
/**
|
|
88
|
+
* 错误率阈值
|
|
89
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
90
|
+
*/
|
|
91
|
+
ErrRateThreshold: number;
|
|
92
|
+
/**
|
|
93
|
+
* 采样率阈值
|
|
94
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
95
|
+
*/
|
|
96
|
+
SampleRate: number;
|
|
97
|
+
/**
|
|
98
|
+
* 是否开启错误采样 0 关 1 开
|
|
99
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
100
|
+
*/
|
|
101
|
+
ErrorSample: number;
|
|
102
|
+
/**
|
|
103
|
+
* 慢调用保存阈值
|
|
104
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
105
|
+
*/
|
|
106
|
+
SlowRequestSavedThreshold: number;
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* CreateApmInstance请求参数结构体
|
|
110
|
+
*/
|
|
111
|
+
export interface CreateApmInstanceRequest {
|
|
112
|
+
/**
|
|
113
|
+
* 实例名
|
|
15
114
|
*/
|
|
16
|
-
|
|
115
|
+
Name: string;
|
|
17
116
|
/**
|
|
18
|
-
*
|
|
117
|
+
* 实例描述信息
|
|
19
118
|
*/
|
|
20
|
-
|
|
119
|
+
Description?: string;
|
|
120
|
+
/**
|
|
121
|
+
* Trace数据保存时长
|
|
122
|
+
*/
|
|
123
|
+
TraceDuration?: number;
|
|
124
|
+
/**
|
|
125
|
+
* 标签列表
|
|
126
|
+
*/
|
|
127
|
+
Tags?: Array<ApmTag>;
|
|
128
|
+
/**
|
|
129
|
+
* 实例上报额度值
|
|
130
|
+
*/
|
|
131
|
+
SpanDailyCounters?: number;
|
|
21
132
|
}
|
|
22
133
|
/**
|
|
23
134
|
* DescribeApmAgent返回参数结构体
|
|
@@ -33,6 +144,71 @@ export interface DescribeApmAgentResponse {
|
|
|
33
144
|
*/
|
|
34
145
|
RequestId?: string;
|
|
35
146
|
}
|
|
147
|
+
/**
|
|
148
|
+
* 维度(标签)对象
|
|
149
|
+
*/
|
|
150
|
+
export interface ApmTag {
|
|
151
|
+
/**
|
|
152
|
+
* 维度Key(列名,标签Key)
|
|
153
|
+
*/
|
|
154
|
+
Key: string;
|
|
155
|
+
/**
|
|
156
|
+
* 维度值(标签值)
|
|
157
|
+
*/
|
|
158
|
+
Value: string;
|
|
159
|
+
}
|
|
160
|
+
/**
|
|
161
|
+
* DescribeApmInstances返回参数结构体
|
|
162
|
+
*/
|
|
163
|
+
export interface DescribeApmInstancesResponse {
|
|
164
|
+
/**
|
|
165
|
+
* apm实例列表
|
|
166
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
167
|
+
*/
|
|
168
|
+
Instances: Array<ApmInstanceDetail>;
|
|
169
|
+
/**
|
|
170
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
171
|
+
*/
|
|
172
|
+
RequestId?: string;
|
|
173
|
+
}
|
|
174
|
+
/**
|
|
175
|
+
* DescribeApmInstances请求参数结构体
|
|
176
|
+
*/
|
|
177
|
+
export interface DescribeApmInstancesRequest {
|
|
178
|
+
/**
|
|
179
|
+
* Tag列表
|
|
180
|
+
*/
|
|
181
|
+
Tags?: Array<ApmTag>;
|
|
182
|
+
/**
|
|
183
|
+
* 搜索实例名
|
|
184
|
+
*/
|
|
185
|
+
InstanceName?: string;
|
|
186
|
+
/**
|
|
187
|
+
* 过滤实例ID
|
|
188
|
+
*/
|
|
189
|
+
InstanceIds?: Array<string>;
|
|
190
|
+
}
|
|
191
|
+
/**
|
|
192
|
+
* DescribeApmAgent请求参数结构体
|
|
193
|
+
*/
|
|
194
|
+
export interface DescribeApmAgentRequest {
|
|
195
|
+
/**
|
|
196
|
+
* 实例ID
|
|
197
|
+
*/
|
|
198
|
+
InstanceId: string;
|
|
199
|
+
/**
|
|
200
|
+
* 接入方式
|
|
201
|
+
*/
|
|
202
|
+
AgentType?: string;
|
|
203
|
+
/**
|
|
204
|
+
* 环境
|
|
205
|
+
*/
|
|
206
|
+
NetworkMode?: string;
|
|
207
|
+
/**
|
|
208
|
+
* 语言
|
|
209
|
+
*/
|
|
210
|
+
LanguageEnvironment?: string;
|
|
211
|
+
}
|
|
36
212
|
/**
|
|
37
213
|
* apm Agent信息
|
|
38
214
|
*/
|