- Community Home
- >
- Software
- >
- HPE OneView
- >
- Locked Alerts
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-25-2021 04:09 PM - last edited on тАО08-27-2021 09:36 AM by support_s
тАО08-25-2021 04:09 PM - last edited on тАО08-27-2021 09:36 AM by support_s
Locked Alerts
How do I clear alerts with a status of LOCKED ??
I have several servers that have no issues but are marked as critical because an old alert is locked.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-26-2021 01:08 AM
тАО08-26-2021 01:08 AM
Re: Locked Alerts
I'd like to know this also, we have a locked alert that isnt true and needs clearing but have no way to clear it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-26-2021 08:14 AM - last edited on тАО07-05-2022 08:57 PM by Sunitha_Mod
тАО08-26-2021 08:14 AM - last edited on тАО07-05-2022 08:57 PM by Sunitha_Mod
Re: Locked Alerts
Hi,
Deleting a locked alert isn't an option from the HPE OneView GUI.
This can however be done using a RECT API client.
Check this video for details & a demo : https://support.hpe.com/hpesc/public/videoDisplay?videoId=vtc00000234en_us
P.S: Moderator Edit: Post edited and replaced with the correct link.
I work for HPE
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-26-2021 02:08 PM
тАО08-26-2021 02:08 PM
Re: Locked Alerts
For instance, you could use the following to attempt clearing all locked alerts:
Get-OVAlert -State Locked | Set-OVAlert -Cleared $True
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-03-2021 04:03 AM
тАО09-03-2021 04:03 AM
Re: Locked Alerts
Chris - just tried the powershell above but get the following error:
Get-OVAlert -State Locked | Set-OVAlert -Cleared $True
Set-OVAlert : A positional parameter cannot be found that accepts argument 'True'.
At line:1 char:29
+ Get-OVAlert -State Locked | Set-OVAlert -Cleared $True
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (:) [Set-OVAlert], ParameterBindingException
+ FullyQualifiedErrorId : PositionalParameterNotFound,Set-OVAlert
What did I do wrong?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-20-2021 08:01 AM
тАО09-20-2021 08:01 AM
Re: Locked Alerts
The -Cleared parameter is not a boolean parameter. It is a Switch Parameter. If you wanted to override it, you would use this format instead:
# Notice the : between -Cleared and $True
Get-OVAlert -State Locked | Set-OVAlert -Cleared:$True
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]
