Does anyone know of way to retrieve the content of the SEL Logs from a server blade through PowerShell using the UCS PowerTool?
I've been looking for the correct cmdlet and haven't come across anything yet.
The GUI equivalent would be the content displayed under Equipment tab -> Equipment -> Chassis - > Chassis # -> Servers -> Server # - > SEL Logs tab.
Not sure if you are still looking for an answer to this or not, but this will clear the SEL logs for all blades on the domain:
connect-ucs <ucsdomain>
Get-UcsBlade | Get-UcsMgmtController | Get-UcsSysdebugMEpLog -Type SEL | Set-UcsSysdebugMEpLog -AdminState clear -Confirm:$false –Force
If you wanted to clear them from a single blade, you could modify it to:
connect-ucs <ucsdomain>
Get-UcsBlade -Chassis <chasssis #> -SlotID <slot #> | Get-UcsMgmtController | Get-UcsSysdebugMEpLog -Type SEL | Set-UcsSysdebugMEpLog -AdminState clear -Confirm:$false –Force
Hello,
Read description before use,
It's very dangerous, this command don't retrieve SEL Logs, but clear all .
regards,