Can one of you please help me get this accomplished?
Hi R0berth1,
Can you provide some additional detail around what you would like to configure? Is the device currently managed in NPM? What version are you using? Do you have an alert created for % Space Utilization?
Thanks,
Tony Johnson
Loop1 Systems
www.loop1systems.com
Orion Core 2012.2.0, IPAM 3.0, NPM 10.4, NTA 3.9.0, IVIM 1.5.0, VNQM 4.0
I currently have an advanced alert setup to trigger when any monitored servers hard drive hits 95% utilized. I also have a report that shows any server drive that is 95% utilized (almost out of disk space). I would like to put the results of the alert, not the report on the Home Summary page. The only way that i can see to add alerts to the summary page is to add the alerts resource which shows all active alerts, but i only want to see the server hard drives and only when they reach the alert mark.
Have you looked at adding a custom object resource? When selecting a single node for the custom object resource the active alerts for that node can be displayed.
Alternatively you could add a Custom Query resource and use something like the query below specifying the object name in the where clause.
Select Name, ObjectName, TriggerTimeStamp, Acknowledged, AcknowledgedBy, Notes
From Orion.AlertStatus s
Join Orion.AlertDefinitions d on s.AlertDefID = d.AlertDefID
Where Acknowledged = '0'
Hello r0berth1,
Have you had any success using the solution above?
I tried it. I just have to do some tweaking to make it work like i want. Got busy with other issues and havent gotten back to it yet. Will let you know what happens.
modified it to:
Select Name AS AlertName, ObjectName AS ServerVolume, TriggerTimeStamp AS TriggerTime
Where Name = 'Server Volume 95% Trigger'
but i need to get the tables and fields to show %free space
I would like to have the space available and percent available added to the above
I would like to add 2 custom volume fields to this. they are INC# but shows up as INC_ for some reason and Volume_Exception. how can I get those to show up in the script above?