

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Hi,
In SiteScope I want to have a CPU monitor:
- Go to Error when CPU load ==100% after two consecutive polls
- Go to Warning when CPU load is between 90% AND 99% after two consecutive polls
- Avoid the monitor send both Error AND Warning when value ==100
This is what I've done:
Calc_Error:
(<<utilization>>>=100)&&(#previous(<<utilization>>)>=100)
Calc_Warning:
<<utilization>>>=90&&#previous(<<utilization>>)>=90
<<utilization>><=99&&#previous(<<utilization>>)<=99
Threshold Error == 'true'
Threshold Warning == 'true'
This seems to work fine, but I'd appreciate feedback from HP experts if this is the correct way to achieve what I want.
Regards,
Dasomm
Accepted Solutions


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Hi,
Seems fine, as long as the correct Logic operators are used to define the boolean calculated metric that you will evaluate in thresholds.
HP Support
If you find that this or any post resolves your issue, please be sure to mark it as an accepted solution.
If you haven’t tried it yet, come and join us in our entitled forums at Support Customer Forums


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Hi,
Seems fine, as long as the correct Logic operators are used to define the boolean calculated metric that you will evaluate in thresholds.
HP Support
If you find that this or any post resolves your issue, please be sure to mark it as an accepted solution.
If you haven’t tried it yet, come and join us in our entitled forums at Support Customer Forums


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Thanks, Kenneth!