VMware Cloud Community
scotty_p
Enthusiast
Enthusiast
Jump to solution

PowerCLI to Report on Configured Alarms

Hello,

I'm looking for a way to pull a report on the alarms we have configured in vCenter. For example, It would be nice to get the information below.

NameTriggerAction
Network Uplink Redundancy LostLost Network ConnectivityEmail: scott@company.com

Is there an easy way to pull this information?

Thanks,

Scott

Reply
0 Kudos
1 Solution

Accepted Solutions
scotty_p
Enthusiast
Enthusiast
Jump to solution

Figured it out.

vSphere PowerCLI> Get-AlarmAction | where {$_.to -eq "group@company.com"} | select alarmdefinition,actiontype,to,trigger | fl

View solution in original post

Reply
0 Kudos
1 Reply
scotty_p
Enthusiast
Enthusiast
Jump to solution

Figured it out.

vSphere PowerCLI> Get-AlarmAction | where {$_.to -eq "group@company.com"} | select alarmdefinition,actiontype,to,trigger | fl
Reply
0 Kudos