- Community Home
- >
- Software
- >
- HPE OneView
- >
- Oneview Powershell to grab power readings from syn...
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
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
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-28-2020 01:06 PM
08-28-2020 01:06 PM
Oneview Powershell to grab power readings from synergy modules
Is there a way to grab power readings for each synergy module using the powershell cmdlets?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2020 03:59 AM
09-07-2020 03:59 AM
Re: Oneview Powershell to grab power readings from synergy modules
If its reading synergy compute modules, you can use below command to grab power readings from synergy compute modules
$Server = Get-HPOVServer 'Enc1, Bay 1'
$ServerUtilization = Send-HPOVRequest ($Server.uri + '/utilization')
[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-10-2020 10:21 AM
09-10-2020 10:21 AM
Re: Oneview Powershell to grab power readings from synergy modules
The use of the Get-HPOVServer Cmdlet is wrong, and it is not limited to HPE Synergy compute nodes.
# The following is supported with the HPE OneView 5.20 and older Cmdlets
$Server = Get-HPOVServer -Name "Encl1, bay 1"
$Utilization = Send-HPOVRequest -Uri ($Server.uri + "/utilization")
# The following is supported with the HPE OneView 5.30 and newer Cmdlets
$Server = Get-OVServer -Name "Encl1, bay 1"
$Utilization = Send-OVRequest -Uri ($Server.uri + "/utilization")
[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
02-09-2022 05:41 AM
02-09-2022 05:41 AM
Re: Oneview Powershell to grab power readings from synergy modules
Where will be the output saved, if we run above script.
searching for that , it didnot save in the client location where i ran the command from.