HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- HPE ProLiant
- >
- Server Management - Systems Insight Manager
- >
- How can I get these power information in SIM repor...
Server Management - Systems Insight Manager
1833784
Members
2655
Online
110063
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- 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
04-08-2009 02:16 AM
04-08-2009 02:16 AM
How can I get these power information in SIM report?
Hi all,
I'm trying to generate a report that will show the PowerSupply information of my servers.The SIm report including these grids:
DeviceName
ModelName
SerialNumber
ConditionVal
MaxCapacity
UsedCapacity
Status
Type
PhysicalLocation
Manufacturer
and so on...
but there are no data in a lot of grids.Just like the sample report which is attached(SIM5.3).
So, if I want to get the usuful Power information,such as SerialNumber\MaxCapacity\UsedCapacity,what can I do?
Thanks!
I'm trying to generate a report that will show the PowerSupply information of my servers.The SIm report including these grids:
DeviceName
ModelName
SerialNumber
ConditionVal
MaxCapacity
UsedCapacity
Status
Type
PhysicalLocation
Manufacturer
and so on...
but there are no data in a lot of grids.Just like the sample report which is attached(SIM5.3).
So, if I want to get the usuful Power information,such as SerialNumber\MaxCapacity\UsedCapacity,what can I do?
Thanks!
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2009 08:25 AM
04-13-2009 08:25 AM
Re: How can I get these power information in SIM report?
You should be able to (or have a DBA) write a custom query using your favorite reporting tool (Access, Crstal Reports, even built-in SQL server tools) to get the information you want. For example, I wanted to get a count of total powers supplies in each server, so I wrote this:
SELECT TOP 100 PERCENT dbo.devices.DeviceKey, dbo.devices.Name AS ServerName, COUNT(dbo.devices.Name) AS PSCount
FROM dbo.devices INNER JOIN
dbo.CIM_PowerSupply ON dbo.devices.DeviceKey = dbo.CIM_PowerSupply.NodeID
WHERE (dbo.devices.ProductType = 1)
GROUP BY dbo.devices.DeviceKey, dbo.devices.Name
ORDER BY dbo.devices.Name
Nelson
SELECT TOP 100 PERCENT dbo.devices.DeviceKey, dbo.devices.Name AS ServerName, COUNT(dbo.devices.Name) AS PSCount
FROM dbo.devices INNER JOIN
dbo.CIM_PowerSupply ON dbo.devices.DeviceKey = dbo.CIM_PowerSupply.NodeID
WHERE (dbo.devices.ProductType = 1)
GROUP BY dbo.devices.DeviceKey, dbo.devices.Name
ORDER BY dbo.devices.Name
Nelson
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP