netlogix

Comments

  • If someone has access to run this command on your DB, you could have much bigger problems than someone changing a password. I've always said the only way to make a computer 100% secure and impenetrable is simple, unplug the power cord.
  • I am not sure how that person resolved it, but I have seen issues with running batch files before because of the NTFS permissions set on cmd.exe.
  • I am not sure if it is a "bug" or just an issue of converting SQL logic to english yet try to stay concise. In the future, you could try changing your alert to a Custom SQL and look at how the SQL is being generated and try to figure out the logic from there. Maybe there should be a tab that contains the un-editable SQL…
  • I know you are asking for NPM, but if you have SAM 5.0 (was APM 4.x), it does that right out of the box.
  • I don't know if this would work for you, but it you had a custom field called Account#, and the others you mentioned, you could go to Manage Nodes, Change group by to Account#, select that customers account number in the left column, check the tip-top box in the right column (should select all nodes), then click edit…
  • Custom Properties are stored in the Nodes, Volumes, or Interface table and they are one to one. The ${SQL: Select blah} will only the first Column and first row, but if you do a little trickery, you can get all the data to show up int it (i.e. ${SQL:select distinct Caption+',' as [data()] from nodes where not Caption in…
  • This is my idea of how it could be accomplished - Not that this is supported - but it could be how they could move to it. Things that need to be supported: A way to promote a secondary poller to a Main Be able to still function while on mis-matched versions during the upgrade process. If we upgrade in order (10.0 -> 10.1…
  • I started to see the CPU time on the syslog service and how DB disk time is spent with syslog and I decided that it isn't worth slowing down orion to collect syslog. (After I already had Orion, I had a need to gather syslog and so I thought - hey Orion does that! so I started to point everything there and I think the load…
  • it wouldn't do a 2nd alert unless it got reset. What would the reset condition be? Also, if it went to 6, it would still be greater than 5, so it shouldn't fire again, but if the alert was a "node" advanced alert, I would suspect it would trigger for every node in the database. So every time it triggered it would flood you…
  • Physical: Select Caption as [Non Virtual] From [NetPerfMon].[dbo].[Nodes] where Not NodeID in ( Select NodeID from [NetPerfMon].[dbo].[VIM_VirtualMachines] where Not NodeID is null ) and Not Caption in ( Select Name From [NetPerfMon].[dbo].[VIM_VirtualMachines] where Not Name is null ) Virtual: Select Name as [Virtual]…
  • Have you considered the Microsoft tftp client? Add/Remove Features - TFTP Client. You'll actually need to download the file though, I don't know how/if it can get a dir listing. "tftp pxe_server_name get file_on_server.txt c:\temp" Then you could do some type of md5 sum if you want.
  • for your orion host, "dst host x.x.x.x and src host x.x.x.x and port 161" for a remote host "host x.x.x.x and port 161" ** those are capture filters, display filters have a different syntax **
  • I have also copied and modified ones for volumes and network cards (just in case SNMP is working, but somehow the NIC or volume got switched).
  • That was too easy of a fix... Open Programs and Features, find Integrated Virtual Infrastructure Monitor, right click, repair... thank you!
  • I had a similar issue and it was resolved by turning browser integration back on. I also heard of an issue when the user "Admin" was deleted, some feature went funky. Do either of these cases apply to you?
  • Ah! it is an interface property! ${Node.VARNAME} pulls a node's custom property. Is this an interface or node alert? if it is a node alert, then it might be a bit tricky. you could micky mouse it by using ${SQL:SELECT IfName+"="+Interface_IP_Address+', ' as a FROM Interfaces where not NodeID = ${Node.NodeID} FOR XML PATH}…
  • Something is coming out wrong, get the pre-convert values to see why it is complaining: Convert(float,(Convert(datetime,'${Year}-${MM}-${DD} ${HH}:${Minute}:${Second} ${AM/PM}')-Convert(datetime,'${AlertTriggerTime}'))) Convert(time,Convert(datetime,'${Year}-${MM}-${DD} ${HH}:${Minute}:${Second} ${AM/PM}') -…
  • Try this in your email to get the template description. ${SQL:SELECT APM_ApplicationTemplate.Description FROM APM_Application inner join APM_ApplicationTemplate on APM_Application.TemplateID = APM_ApplicationTemplate.ID where APM_Application.ID = ${ApplicationID}}
  • keep us posted, I want to know why too.
  • I haven't found a way yet. :( Maybe add "Union select 'unknown' as status" I don't know if that will work...
  • Well, it would be one alert per evaluation cycle, there are a few factors to think about. 1st) polling cycle - APM Polling Frequency (how often Orion checks the logs) 2nd) Alert Evaluation Frequency (how often the alerter service checks for the condition) 3rd) condition delay 4th) Reset delay one option could be, set the…
  • I have seen a problem with permissions before and I just went to inetpub\solarwinds and re-drilled all the permissions.
  • anything showing up in the syslog SQL table? Run in SQL query: "SELECT TOP 1000 * FROM [NetPerfMon].[dbo].[SysLog] order by [dateTime] desc" have you tried re-running config wizard? and selecting both the database and the services (you could do the website too, but I don't think that involved in this). (I know using the…
  • I have a 4510 with Sup V's and it works great. I would think you have something not working quite right with SNMP. Like some how the snmp query is getting mangled in transit or the string doesn't have enough access on the 4510.
  • have you tried appending the url with &printable=true&accountid=guest&password=orion where a internal user is created with the username of guest and password is orion.
  • Have you considered: Select Nodes Where all of the following apply Agent IP Address Contains "." Select Nodes Where Non of the Following apply Caption is "bad router" Vendor is not "Cisco" etc, etc, etc
  • oopps, I guess I hadn't payed enough attention to where the thread went... not Authentication anymore, but group based settings being remembered or not... how does the WebUserSettings table look? Maybe get rid of all stored settings and start over: "truncate table [NetPerfMon].[dbo].[WebUserSettings]" I don't know if it is…
  • if you have the database set to simple, then you should be able to shrink it to 2mb (I don't think it will let you shrink it any lower that that) and it should stay there until a large operation takes place. Let's say you are back in school, and the teacher say's "show your work". The ldf is where you would show your work,…
  • But one poller will never have two names, so it will never alert... I think there is a little confusion over how alerts work. Based on your original screen shot, you want to trigger the alert when: Node name is like *RTR....* and that node is up and the poller's name is like both *bgp peer state* and *bgp peer local…