tencentcloud-sdk-nodejs-apm 4.1.190 → 4.1.197
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
|
@@ -1725,49 +1725,64 @@ export interface QueryMetricItem {
|
|
|
1725
1725
|
*/
|
|
1726
1726
|
export interface ServiceDetail {
|
|
1727
1727
|
/**
|
|
1728
|
-
*
|
|
1728
|
+
* <p>应用ID</p>
|
|
1729
1729
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1730
1730
|
*/
|
|
1731
1731
|
ServiceID?: string;
|
|
1732
1732
|
/**
|
|
1733
|
-
*
|
|
1733
|
+
* <p>业务系统ID</p>
|
|
1734
1734
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1735
1735
|
*/
|
|
1736
1736
|
InstanceKey?: string;
|
|
1737
1737
|
/**
|
|
1738
|
-
*
|
|
1738
|
+
* <p>用户appid</p>
|
|
1739
1739
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1740
1740
|
*/
|
|
1741
1741
|
AppID?: number;
|
|
1742
1742
|
/**
|
|
1743
|
-
*
|
|
1743
|
+
* <p>主账号uin</p>
|
|
1744
1744
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1745
1745
|
*/
|
|
1746
1746
|
CreateUIN?: string;
|
|
1747
1747
|
/**
|
|
1748
|
-
*
|
|
1748
|
+
* <p>应用名</p>
|
|
1749
1749
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1750
1750
|
*/
|
|
1751
1751
|
ServiceName?: string;
|
|
1752
1752
|
/**
|
|
1753
|
-
*
|
|
1753
|
+
* <p>应用描述</p>
|
|
1754
1754
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1755
1755
|
*/
|
|
1756
1756
|
ServiceDescription?: string;
|
|
1757
1757
|
/**
|
|
1758
|
-
*
|
|
1758
|
+
* <p>地域</p>
|
|
1759
1759
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1760
1760
|
*/
|
|
1761
1761
|
Region?: string;
|
|
1762
1762
|
/**
|
|
1763
|
-
*
|
|
1763
|
+
* <p>标签</p>
|
|
1764
1764
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1765
1765
|
*/
|
|
1766
1766
|
Tags?: Array<ApmTag>;
|
|
1767
1767
|
/**
|
|
1768
|
-
*
|
|
1768
|
+
* <p>业务系统名称</p>
|
|
1769
1769
|
*/
|
|
1770
1770
|
InstanceName?: string;
|
|
1771
|
+
/**
|
|
1772
|
+
* <p>阈值配置开关。true 表示使用应用级阈值;false 表示使用业务系统级阈值</p>
|
|
1773
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1774
|
+
*/
|
|
1775
|
+
EnableThresholdConfig?: boolean;
|
|
1776
|
+
/**
|
|
1777
|
+
* <p>错误率阈值(%),用于判断应用健康状态为"红色"</p><p>单位:%</p>
|
|
1778
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1779
|
+
*/
|
|
1780
|
+
ErrRateThreshold?: number;
|
|
1781
|
+
/**
|
|
1782
|
+
* <p>响应时间预警阈值(ms),用于判断应用健康状态为"黄色"</p><p>单位:ms</p>
|
|
1783
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1784
|
+
*/
|
|
1785
|
+
ResponseDurationWarningThreshold?: number;
|
|
1771
1786
|
}
|
|
1772
1787
|
/**
|
|
1773
1788
|
* DescribeApmInstances返回参数结构体
|