惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Y
Y Combinator Blog
D
Docker
有赞技术团队
有赞技术团队
D
DataBreaches.Net
The GitHub Blog
The GitHub Blog
爱范儿
爱范儿
H
Help Net Security
美团技术团队
MyScale Blog
MyScale Blog
B
Blog RSS Feed
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
阮一峰的网络日志
阮一峰的网络日志
A
About on SuperTechFans
小众软件
小众软件
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
G
Google Developers Blog
月光博客
月光博客
Google DeepMind News
Google DeepMind News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Blog — PlanetScale
Blog — PlanetScale
MongoDB | Blog
MongoDB | Blog
F
Fortinet All Blogs

博客园 - DataFlow

word break 在不同浏览器中的表现 系统架构 创造HTTPS的是个神 为Chrome开发插件提高工作效率 Javascript 控制style 小结 svcutil 生成代理类时的问题 xeam Build Definition Extension uninstall 卸载 Wcf客户端配置里Endpoint的Name属性无效 屏蔽电信流氓弹出广告 正则替换中的一个Bug SQL server 性能相关 SQL Express 相关 时间格式 输出一个在没有.Net 环境的机器也可以跑得安装包 再谈性能力 XML中的时间 decimal.Round 的区别 Dos中常用的命令 反序列化怪现象,数组无父
SCOM Configuration NumSamples and Absolute
DataFlow · 2012-06-14 · via 博客园 - DataFlow

 <UnitMonitor ID="FailureCountDelta" Accessibility="Internal" Enabled="true" Target="Server" ParentMonitorID="Performance" Remotable="true" Priority="Normal" TypeID="Performance!System.Performance.DeltaThreshold" ConfirmDelivery="false">
        <Category>Performance</Category>
        <AlertSettings ...>
        </AlertSettings>
        <Configuration>

                 ......
          <Frequency>900</Frequency>
          <Threshold>3</Threshold>
          <NumSamples>1</NumSamples>
          <Absolute>true</Absolute>
       </Configuration>
</UnitMonitor>

Frequency: 采样频率,每隔900秒采样一次

Threshold: 临界值, 与上次采样结果比较,如果差大于该值,trigger alert.

NumSamples: 采样结果在内存中保存几次,不包含本次采样,如果为1,则表示本次与上次比较,如果为n, 表示本次与上n次的平均值比较。

Absolute: 与上次比较时是直接取绝对差值,还是取增加或者 减少的百分比。

Notice:

 Absolute设置项仅在DeltaThreshold类型的monitor中存在, AverageThreshold中是没有的,因为是求平均值,并不取差值。

AverageThreshold类型常用于响应时间,处理时间的monitor.