- Community Home
- >
- Servers and Operating Systems
- >
- HPE ProLiant
- >
- Server Management - Systems Insight Manager
- >
- Re: Publish System Status on Intranet
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
07-24-2006 11:43 AM
07-24-2006 11:43 AM
Publish System Status on Intranet
Is there any way where I can publish the system information (e.g. system status) that displayed on Insight Manager onto my company's Intranet? Have anyone done this before? Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2006 03:03 AM
07-26-2006 03:03 AM
Re: Publish System Status on Intranet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2006 03:32 AM
07-26-2006 03:32 AM
Re: Publish System Status on Intranet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2006 06:34 PM
07-26-2006 06:34 PM
Re: Publish System Status on Intranet
Yes, I have done this.
This is what I did:
I created some .asp scripts that connects to HP SIM database, and return with the status.
The entire process is all about SQL query.
Please look at the attached image
I show here servers that are: Critical, Major, Minor and Normal.
I have also collected info about diskspace on each server.
Reply to me if this was of interrest.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2006 07:00 PM
07-26-2006 07:00 PM
Re: Publish System Status on Intranet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2006 11:26 PM
07-26-2006 11:26 PM
Re: Publish System Status on Intranet
Here are the DB connection and the SQL query.
set HPSIMConn=server.CreateObject("ADODB.Connection")
HPSIMConn.Open "Insight_v50_0"
set rsCrit = Server.CreateObject("ADODB.recordset")
rsCrit.Open "select DeviceName, DeviceStatus, IPAddress, ProductName from R_Inventory where DeviceKey in (select devices.deviceKey from devices JOIN notices(NOLOCK) ON devices.deviceKey = notices.deviceKey and notices.NoticeType = 1 WHERE ( devices.OverallStatus = 5 ) ) order by DeviceName ASC", HPSIMConn
set rsMaj = Server.CreateObject("ADODB.recordset")
rsMaj.Open "select DeviceName, DeviceStatus, IPAddress, ProductName from R_Inventory where DeviceKey in (select devices.deviceKey from devices JOIN notices(NOLOCK) ON devices.deviceKey = notices.deviceKey and notices.NoticeType = 1 WHERE ( devices.OverallStatus = 4 ) ) order by DeviceName ASC", HPSIMConn
set rsMin = Server.CreateObject("ADODB.recordset")
rsMin.Open "select DeviceName, DeviceStatus, IPAddress, ProductName from R_Inventory where DeviceKey in (select devices.deviceKey from devices JOIN notices(NOLOCK) ON devices.deviceKey = notices.deviceKey and notices.NoticeType = 1 WHERE ( devices.OverallStatus = 3 ) ) order by DeviceName ASC", HPSIMConn
set rsNor = Server.CreateObject("ADODB.recordset")
rsNor.Open "select DeviceName, DeviceStatus, IPAddress, ProductName from R_Inventory where DeviceKey in (select devices.deviceKey from devices JOIN notices(NOLOCK) ON devices.deviceKey = notices.deviceKey and notices.NoticeType = 1 WHERE ( devices.OverallStatus = 1 ) ) order by DeviceName ASC", HPSIMConn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2006 11:43 PM
07-26-2006 11:43 PM
Re: Publish System Status on Intranet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2006 12:11 AM
07-27-2006 12:11 AM
Re: Publish System Status on Intranet
How familiar are you with asp scripts ??
Make an ASP file, and place the code in there.
To publish data, you will have to run through the recordset, and display one record at a time.
I have done this in a table.
I have been writing on this scripts for a while, so I don't want to make the entire script avaliable.
Do you see my point ?
All you have to do is get the rights data from HP SIM db, and present them on an representable wey on your intranet site.
I don't know how your intranet design is, and I don't know how you would have it presented.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2006 01:07 AM
07-27-2006 01:07 AM
Re: Publish System Status on Intranet
I've understood your opinion.
I will search.
thx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2006 01:29 PM
07-27-2006 01:29 PM
Re: Publish System Status on Intranet
I'm familiar with ASP scripts. My only problem was tring to sort out which table from the SIM database that I can extract the information. Thanks to your hardwork, I'm now able to get the information I want publish onto my company's intranet. Thanks again!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-28-2006 01:19 AM
07-28-2006 01:19 AM
Re: Publish System Status on Intranet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2006 10:01 PM
07-30-2006 10:01 PM
Re: Publish System Status on Intranet
I am glad to be of help to you all on this. I really hope that you value my response, and give me some points :)
The best thing is to create a view. There you can add some code, as for calculating free disk space and more.
I am currently building and entire website for complete monitoring of our server room.
- Server Status
- Used disk space for each server
- Temperatur in our server room
- and more will come, WMI and more...
Adrian:
I have provided you with the entire asp file for serverstatus.
You might have to edit it, to make it fit for your needs and design.