Good morning -
How do i create a report that provide information over the last seven days for items that have been acknowledged by someone wotking in Solarwinds?
Thank you for your time.
JBMoore
OK, this is good, you are pretty much on latest version.
There are two options to consider:
(1)
Build report in GUI
With this option above I was not able to achieve result that I would like. Besides, I could not find the way to restrict to 7 last days. Therefore, I would opt for option 2 below
(2)
Build report with SQL script
SELECT *FROM AlertHistoryView ahvJOIN AlertStatusView asv ON asv.AlertDefID = ahv.AlertRefID AND ahv.AlertObjectID = asv.AlertObjectIDJOIN AlertDefinitionsView adv ON adv.AlertDefID = asv.AlertDefIDWHEREEventTypeWord = 'Acknowledged'ANDahv.TimeStamp > DATEADD(DAY, -7, GETDATE())
and this one is grouped by alert name
... to take it further, you can also JOIN nodes table and pull off all info you need about the nodes, etc... SQL is really cool thing
This can be achieved either via web-based reports or with SQL query. What version of NPM you are on my friend? Just scroll all the way down on any page any copy-paste the very last info in footer section
Good mornign Alex - 11.5.2
Orion Platform 2015.1.2, VNQM 4.2.2, IPAM 4.3, SAM 6.2.1, DPA 9.2.0, NCM 7.4, IVIM 2.1.0, QoE 2.0, NPM 11.5.2, NTA 4.1.1
Absoultely awesome and outstanding Alex. A huge step in the right direction for me. Thank you kindly for your time, patience, and knowledge.