How to change Severity for system default Threshold Violation Events in Performance Management.
Performance Management Events seen in Spectrum trigger unwanted user Notifications due to their Severity. How can we keep the Events but change Severity to limit their inclusion in Notification Rules?
How to change Major to Minor Severity for Performance Management default system Events?
All supported Performance Management releases
There are default system Events based on Threshold Violations raised in Performance Management. These are out of the box Events that are raised without user configuration.
To change system Threshold Violation Event Severity we use a REST API. In this example we're going to focus on the common Event:
First take these steps:
In the open REST client issue a GET against the following URL. Note this can also be done in a browser tab which can make for easier searching.
Find Event with the Name:
Note the ID of that rule, found above the Name value. Using that ID issue a new GET against the URL:
In a support lab the following is an example of the default Event Rule being used.
Edit the <Enabled> value from MAJOR to MINOR to lower the Severity. Can also raise Severity by changing it to CRITICAL. We do that by:
<EventRule version="1.0.0">
<Severity>MINOR</Severity>
</EventRule>
Once completed new instances of this Event will be raised using the different new Severity value set.