tencentcloud-sdk-apm 3.0.1105 → 3.0.1129
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210622/models.rb +16 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 07a74446000e0e753294a3020b09c2330764e6e7
|
4
|
+
data.tar.gz: 3cb02996d429c7d6f2f32c975ccd6fb696fbb938
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 40c97b55899db272fb49456399d0f657130de34b41581830d8b858eb7fcfb7ba9677251706af4707d32ac112c379ad82544756a7f23cf518f32096ba56954355
|
7
|
+
data.tar.gz: 4e4e0058dd8690292e76d1b6481e6bb936c42dd75d2dd8ec382e78be12944ed9b44459ea60c0928f6c54d4b91bb67f22c307a4b0aedbbef0d76aa4fa842bbdb9
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1129
|
data/lib/v20210622/models.rb
CHANGED
@@ -133,10 +133,14 @@ module TencentCloud
|
|
133
133
|
# @type InstrumentList: Array
|
134
134
|
# @param TraceSquash: 链路压缩开关(已废弃)
|
135
135
|
# @type TraceSquash: Boolean
|
136
|
+
# @param DisableMemoryUsed: 探针熔断内存阈值
|
137
|
+
# @type DisableMemoryUsed: Integer
|
138
|
+
# @param DisableCpuUsed: 探针熔断CPU阈值
|
139
|
+
# @type DisableCpuUsed: Integer
|
136
140
|
|
137
|
-
attr_accessor :InstanceKey, :ServiceName, :OperationNameFilter, :ExceptionFilter, :ErrorCodeFilter, :EventEnable, :UrlConvergenceSwitch, :UrlConvergenceThreshold, :UrlConvergence, :UrlExclude, :IsRelatedLog, :LogSource, :LogSet, :LogTopicID, :SnapshotEnable, :SnapshotTimeout, :AgentEnable, :InstrumentList, :TraceSquash
|
141
|
+
attr_accessor :InstanceKey, :ServiceName, :OperationNameFilter, :ExceptionFilter, :ErrorCodeFilter, :EventEnable, :UrlConvergenceSwitch, :UrlConvergenceThreshold, :UrlConvergence, :UrlExclude, :IsRelatedLog, :LogSource, :LogSet, :LogTopicID, :SnapshotEnable, :SnapshotTimeout, :AgentEnable, :InstrumentList, :TraceSquash, :DisableMemoryUsed, :DisableCpuUsed
|
138
142
|
|
139
|
-
def initialize(instancekey=nil, servicename=nil, operationnamefilter=nil, exceptionfilter=nil, errorcodefilter=nil, eventenable=nil, urlconvergenceswitch=nil, urlconvergencethreshold=nil, urlconvergence=nil, urlexclude=nil, isrelatedlog=nil, logsource=nil, logset=nil, logtopicid=nil, snapshotenable=nil, snapshottimeout=nil, agentenable=nil, instrumentlist=nil, tracesquash=nil)
|
143
|
+
def initialize(instancekey=nil, servicename=nil, operationnamefilter=nil, exceptionfilter=nil, errorcodefilter=nil, eventenable=nil, urlconvergenceswitch=nil, urlconvergencethreshold=nil, urlconvergence=nil, urlexclude=nil, isrelatedlog=nil, logsource=nil, logset=nil, logtopicid=nil, snapshotenable=nil, snapshottimeout=nil, agentenable=nil, instrumentlist=nil, tracesquash=nil, disablememoryused=nil, disablecpuused=nil)
|
140
144
|
@InstanceKey = instancekey
|
141
145
|
@ServiceName = servicename
|
142
146
|
@OperationNameFilter = operationnamefilter
|
@@ -156,6 +160,8 @@ module TencentCloud
|
|
156
160
|
@AgentEnable = agentenable
|
157
161
|
@InstrumentList = instrumentlist
|
158
162
|
@TraceSquash = tracesquash
|
163
|
+
@DisableMemoryUsed = disablememoryused
|
164
|
+
@DisableCpuUsed = disablecpuused
|
159
165
|
end
|
160
166
|
|
161
167
|
def deserialize(params)
|
@@ -185,6 +191,8 @@ module TencentCloud
|
|
185
191
|
end
|
186
192
|
end
|
187
193
|
@TraceSquash = params['TraceSquash']
|
194
|
+
@DisableMemoryUsed = params['DisableMemoryUsed']
|
195
|
+
@DisableCpuUsed = params['DisableCpuUsed']
|
188
196
|
end
|
189
197
|
end
|
190
198
|
|
@@ -204,16 +212,19 @@ module TencentCloud
|
|
204
212
|
# @type LastPeriodValue: Array
|
205
213
|
# @param CompareVal: 同比指标值,已弃用,不建议使用
|
206
214
|
# @type CompareVal: String
|
215
|
+
# @param NameCN: 指标中文名
|
216
|
+
# @type NameCN: String
|
207
217
|
|
208
|
-
attr_accessor :Key, :Value, :Unit, :CompareVals, :LastPeriodValue, :CompareVal
|
218
|
+
attr_accessor :Key, :Value, :Unit, :CompareVals, :LastPeriodValue, :CompareVal, :NameCN
|
209
219
|
|
210
|
-
def initialize(key=nil, value=nil, unit=nil, comparevals=nil, lastperiodvalue=nil, compareval=nil)
|
220
|
+
def initialize(key=nil, value=nil, unit=nil, comparevals=nil, lastperiodvalue=nil, compareval=nil, namecn=nil)
|
211
221
|
@Key = key
|
212
222
|
@Value = value
|
213
223
|
@Unit = unit
|
214
224
|
@CompareVals = comparevals
|
215
225
|
@LastPeriodValue = lastperiodvalue
|
216
226
|
@CompareVal = compareval
|
227
|
+
@NameCN = namecn
|
217
228
|
end
|
218
229
|
|
219
230
|
def deserialize(params)
|
@@ -237,6 +248,7 @@ module TencentCloud
|
|
237
248
|
end
|
238
249
|
end
|
239
250
|
@CompareVal = params['CompareVal']
|
251
|
+
@NameCN = params['NameCN']
|
240
252
|
end
|
241
253
|
end
|
242
254
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-apm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1129
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-08-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|