Comments
-
This is what i have as my alert if the polling engine isn't syncing, works perfectly.
-
I ran into the same issue with views / resources i created for other users be able to even view. Its a known issue / security feature. However I've rarely found things i couldn't do with SWQL or the Advanced Selector. We can help you convert things from SQL to SWQL or the Advanced Selector if you want, the SWQL admin guide…
-
I am using STM 6.0 not SRM yet as i am still on NPM 11.0. However this is thread is about the netapp's not the EMC's sorry for the confusion there. Any other ideas?
-
select nip.IPAddress as NodeIP,ipn.IPAddress as IpamIP,nip.NodeID,n.Caption from NodeIPAddresses nip inner join IPAM_Node ipn on ipn.IPAddress = nip.IPAddress inner join Nodes n on n.NodeID = nip.NodeID That might be what your looking for
-
Here is what i believe you want select i.InterfaceName,n.Caption,i.UnManageFrom,i.UnManageUntil from Interfaces as i left join Nodes as n on n.NodeID = i.NodeID where GETDATE() <= i.UnManageFrom Let me know if this is correct of if you have any questions
-
this is what i did to send audible alerts in the NOC room. Sounds on Down Alerts Its a simple PC that has large speakers on it, then i just installed a trap monitor and sent a trap from the alert to the trap monitor in this case i used Trap Receiver and configured the audio alert with that. Works perfectly hope this helps…
-
I believe this is because SWQL returns XML and a where IN with a select statement inside the select statement is more XML that the where clause can not parse <a:Action s:mustUnderstand="1">http://schemas.solarwinds.com/2007/08/informationservice/InformationService/QueryXml</a:Action> RETURN XML RAW</query> <parameters>…
-
NVM i found my answer anyone else looking for it it was a stupid over look but on your app.config the SWIS doesn't change it properly when added so just change it to <binding name="BasicHttpBinding_InformationService" maxBufferSize="2147483647" maxBufferPoolSize="524288" maxReceivedMessageSize="2147483647">
-
I believe this is a feature request but right now is not possible. The tabs at the top can be customized based on user or group logged in to show what stuff they have on the sub menu's below it but the tabs at the top only appear based on your installed modules.
-
With the newer NPM versions there is an even better way, by selecting Manage Pollers from your settings you can create a CPU and Memory poller that will replace the current Solarwinds CPU and Memory if the MIB is found when you List Resources for the node You can make the poller here and define the datasources (OID's) and…
-
Select AlertStatus.AlertDefID,AlertStatus.ObjectName, Events.EventID,Nodes.Vendor,Nodes.NodeID,Nodes.Status,Nodes.Caption as "Node Name",hw.ServiceTag as Serial,Message,AlertStatus.ObjectType as "Alert Type",EventTime,Nodes.IP_Address,Nodes.CRM_Account from AlertStatus WITH(NOLOCK) inner join Events WITH(NOLOCK) ON…
-
I still haven't found the issue , this is happening now that the production enviornment is on NPM12 , tdanner any advice?
-
HAHA i just realized @shack who you are
-
This could be due to the UTC time issue with the new alerts not respecting the system time, i know i've had to change some my reports for EST to -4 hours with a DATEADD in SQL or HOURDIFF in SWQL. However Solarwinds did release a HF yesterday that i believe did fix this. SolarWinds Orion Platform 2015.1 HotFix 3…
-
NVM i figured it out when trying to access the url with the get string i saw it was throwing errors that it couldn't find the server matching the returned name because the solarwinds boxes are on their own network with their own DNS servers completely so i added that server name to my host file and it works .... lost time…
-
I've also tried to access it through :17778/SolarWinds/InformationService/v3/OrionBasic and i auth 3 times and it then comes up with a HTTP 400 response
-
Here is a nice way to do it via C# if interested as well I took a different approach and waited for the node to complete and get the swis url then update the node. public HttpResponseMessage Post([FromBody]NodeInfo info) { CustomNodeInfo cnInfo = new CustomNodeInfo(); #region Hard Coded Values info.EngineID = 1;…
-
I think i might have found the issue , looks like permissions on the Logs weren't set for NETWORK Service and Authenticated users in program data... However we'll see that's the only like i can think of that the function CLR.dll! LogHelp_TerminateOnAssert is actually having issues writing to the logs because of the…
-
You can also change this in the report itself to show the top 100% of all data and it fixes it
-
Nice post! BTW you should change GETDATE to GETUTCDATE as Solarwinds now stores in UTC
-
Yeah i actually found a way around this i installed the trap monitor on the PC that showing the boards on the projectors and then sent a trap on a down alert to that PC and it plays a sound when the trap is tripped .
-
I am doing this as well, however can you help with getting the right Events.Message to display properly also?
-
To my understanding it works just like the Legacy clear alerts in which it will clear the active alert however if it is still a problem on the object it will just re-alert again unless you stop monitoring that object. This is useful when you want to make sure the alerts are being processed properly or if you removing…
-
Thanks for this my report was built into the legacy report writer so i m moving it now to the web report writers, however i just ran into an issue where i don't see the Node Status icon option anywhere for up/down/warning etc do you have an idea where this could be?