njoylif ✭✭✭✭✭

Comments

  • I'd run through the install again. It sounds like the netperfmon service install got corrupted. (go into control panel -> programs / add/remove programs). do a repair there on core services (I think). SW?
  • I've seen it work maybe 10% of the time. Great concept, needs work :)
  • SELECT InterfaceID FROM Orion.NPM.Interfaces WHERE InterfaceID NOT IN (4016,3011) or perhaps more useful if dynamic need... SELECT InterfaceID FROM Orion.NPM.Interfaces WHERE InterfaceID NOT IN ( SELECT InterfeaceID FROM Interfaces where <dynamic WHERE criteria here> )
  • first you need to find out what columns in those 2 tables have dates in them and ensure they are in the context you are looking for, i.e. client status change @ x time. then you want to use that/those columns in reporting. i.e. append your WHERE clause to include your requirements. See/download THIS POST and THIS POST for…
  • I've uploaded some of the basics for cisco and some other stuff... basically, I go into visio, use vendor stencils and change the colors by ungrouping. Then save as wmf (or png)...
  • test using a link like this - which takes advantage of "macros" within NPM... http://<DNSNAME>/${<macro>} Replace: <DNSNAME> = name of URL to point to... <macro> = column name of field used for substitution. i.e. ip_address for the IP of the system or if you have custom property called URL for each node... Here is my real…
  • There's a bit to it, but I'd be happy to help you through it, assuming you have NCM as well as NPM. See my content upload post here. We'd have to tweak for routes you want instead of "static" routes, but we can discuss further if desired.
  • I do this type of thing one of two ways (neither of which might be right for you)... 1. use a job to run a command "sh run | i logg.*192.168" or something of the like. this would return all rows matching and as it is a job, you can log to file, email results, etc. You'd have to review the text output. 2. use policy manager…
  • a good way to get around this issue is to use IPSLA as you must identify target and source for your testing. You can also integrate these "objects" onto your maps. This is how we are getting around GRE tunnels always being up without keepalives as well.
  • its not a problem, I'm doing this with 2 addit'l web servers using F5 load balancer. There are some considerations: persistence vs. not - I use source IP persistence and it works, but less efficient LB...may want to play around. I'm also playing with cookies now, but need to verify systems using Orion allow cookies, etc...…
  • I'd love to hear as well. I had my outlook pulling the feeds from here and that broke. spent a little time trying to get working again but didn't end up making it work. This allowed me to see everything without missing. especially great for feature requests.
  • get a video card that does HDMI.
  • I have additional web servers running on R2 with no issues, but not pollers
  • I would expect you could edit that view or create a new view without the components for netflow. maybe copy the netflow and rename...then remove the netflow stuff...maybe
  • I've seen this many times. I've had to reboot the box to resolve...but opened a ticket on it and this is what they suggested... I haven't had time to implement yet, but here ya go (based on old ticket #33508): 1. Changed the Maps rate from 36 seconds to 2 mins 2. Page refresh from 1 min to 2 min 3. Change the Poolsize in…
  • it baffles me that automag928‌ got that response from SW support. This is the core functionality we are paying for when purchasing UDT and continue paying maintenance; and the application needs to keep up with the technology - especially Cisco as it is foundational for SW applications. Why should we have to vote up a…
  • Ensure you don't have any nodes/object being polled by that system -> manage nodes view -> select polling engine in "group by" drop down box and select that polling engine. if you are moving to another system (install somewhere else), uninstall and that should remove from DB. if not, run config wizard and point to new DB.…
  • I suspect that would require the "SAN" module but do not know. I am in the same boat, so would love to hear feedback. SW?
  • try brackets around the not part...i.e. [^(stuff)] here is a good cheat-sheet site: RegExr: Learn, Build, & Test RegEx and click on cheat sheet on left. ^ at beginning is "starts with"
  • we are using ManageEngine. We send emails (html formatted) and have business rules set up to assign to group. use Custom property at top of body with sepecial characters "##" to do facilitate Dept: assignment part. The multiple alerts/emails can be an issue... I try to manage that via the alerts in Orion by being careful…
  • I use jobs in the Database to accomplish things like this. just run the query how often needed.
  • Good idea. please submit results -- should be able to if you can determine what Orion's status is for that in the DB. If you have some ports in that state, find out what the NodeID is using the Nodes table in the DB. Then run the below query agains the Interfaces table to find the appropriate interface: SELECT InterfaceID,…
  • worked like a champ, thanks
  • there are settings that determine this behavior (admin -> web console settings). I recommend playing with these until you get the results you want. I think it is rolling up the results of the "Node" health only
  • Need some clarification on credentials used in new GUI. when someone schedules a job, how do we ensure their login credentials are used? I know I can go in and add user info into connection profiles, but how match up with orion user? If I log into Orion as domain\larry.rice and have ACS credentials of lrice, how do I sync…
  • ok, so perhaps PICNIC is in effect. apparently there is a menu item for TRAPS. not sure if not enabled by default or I just removed it way back when. That displays all of my SNMP traps, including color actions, etc... So my next questions are: - what defines an event and is it configurable... - why are my traps that have…
  • ${SQL: SELECT -- ISNULL(svm.Name,'') as Name -- CASE WHEN svm.Name IS NOT NULL and svm.Name <> '' then svm.name else '' END as Name FROM dbo.[SRM_VServers] svm INNER JOIN dbo.[SRM_VServerToVolumesMapping] m ON svm.VServerID = m.VServerID WHERE m.VolumeID = ${N=SwisEntity;M=VolumeID}} uncomment and test one at a time. I…
  • for cisco, here is a UDnP poller. you might be able to find an equiv. OID to poll for your gear.
  • it should show the sub-interfaces. we are monitoring a TON of subs... I'd try using a 3rd party snmp-get tool (like getif) to verify the device is reporting properly, but Orion just uses SNMP, so.... what version of NPM are you using, how are you trying to manage the interfaces, etc...?