Comments
-
if permissions doesn't work, try removing files in that directory (and/or the directory) and running repair on the install.
-
I have this same problem and have a ticket open on it. 1023372. I recommend you open a ticket and reference my ticket. it may help speed things along if they have additional data from another implementation/instance.
-
product management indicated there is a poller install for any additional pollers you are running. get with them for link.
-
off top of my head I would say you'd pull the fields from the loop into a temp table and do a join to the nodes table and just output <tmptbl>.*, nodes.<columnsOfInterest>. join on temp table server name and node caption or whatever column it was designed to match on. Once validated, you would just (after backing up DB, of…
-
my understanding is that right now, you are limited to the table of the object the label is attached to...so if it is a node, you have only the columns on the Nodes table, etc...I asked this question as well because I wanted to list the hostname (Caption) of the node the Interface belonged to. Solarwinds - is this on the…
-
* If you consider yourself to be network engineer (analyst, admin, consultant), why do you monitor servers in Orion today? * In our environment, everyone is enjoying the capabilities and features Orion provides us in the network realm. It would be really handy to have a module that handled the server/application side of…
-
Need more specific info on what you are trying to accomplish. what tables, what columns in the tables, which is label and what can tie the two tables together? also, what graphs are you referring to, because I think you'd have to get pretty heavy into customizing to get the labels for the canned graphs to be changed...
-
It used to auto update, doesn't any more. I wrote a SQL statement to do it that runs every 24 hrs. Not sure why that went away... Update Interfaces SET Caption=InterfaceName + '-' + InterfaceAlias WHERE InterfaceAlias != '' As always, when messing with the DB, run a backup PRIOR to making any changes and you may need to…
-
in what respect; to a new (different) server? did you search KB articles; probably detailed steps? move DB/Logs to new server then run config wizard on main NPM system and check database. point to new system. repeat as necessary for any other "additional" poller/web servers you may have.
-
I'd open a ticket on this then. Please post results!
-
I'm running my entire environment on VM and SAN. My polling engines are dual proc, 4GB RAM and web servers are single proc 2GB RAM. DB is quad proc with 10GB RAM. DB size is around 30GB. This includes NCM and NTA also on VM.
-
Try to take an existing report that is for the last 24 hours and copy that part of the where clause. paste into your custom SQL clause to get report for last 24 hours.
-
I concur - NAT is currently troublesome. also to piggy-back, DNS resolution (hostname) even if ping does not respond?.
-
2000 NODES is quite a bit depending on frequency of polling and how many interfaces/volumes, etc... you really need to look at how many pollers are on the device. best thing to look at for this is system manager -> connect to that polling engine and select FILE -> Polling status. provide screen capture of this if possible.…
-
Hello, see the LINK HERE for a report that gets my WAN links count when it goes > 45% for 5 minutes (for the last 7 days. you'll have to tweak for the nodes you are looking for and the percentages (sounds like you'll want to create a few reports). hope that helps
-
if you haven't done already (I'm guessing), go into admin -> manage nodes; find that node, click the + next to it to display all the interfaces, then check the ones that have been removed from the router. click on the delete icon in upper right. this should remove them from Orion. If you've done this already, then see…
-
that gets REAL dicey. I'm thinking you are only getting the last month (should be 2 now) because it is Feb/March. You are asking for the last 3 months, not including this one. as it is march, it should give you Feb '10, Jan '10 and the way the SQL is written, Dec '10 - which there is no data match for. this type of SQL…
-
I'd love to get that to. I have one for Juniper SRX and Cisco ASA (tailored for our environment - meaning some things we don't comply with for business reasons were left off). I'll work on adding those to content exchange, but would love to see the IOS as well.
-
and reports too...I have same situation....need to standardize across 3 environments. PITA doing one by one.
-
may or may not work, but ensure the application pool within IIS is running.
-
firewall, lb, much of e-security falls under network. AD, DNS is under Server team Mainframe does their stuff only (w/ custom written monitoring). We have separate server/mainframe monitoring group and a NOC. Monitoring has been totally group based until recently. I've had networking in Orion for years and am finally in…
-
best way I've found is to create a custom report using SQL. Once that is done and working, create a view that points to that report. hope that helps
-
you have to manually copy the reports to all servers (addt'l poller and addt'l web). write and schedule a batch file is easiest way.
-
Just a thought, did you install all applications on the additional poller? i.e. if you are running IP SLA, NPM, or APM you must install that module on all additional pollers and additional web servers with 10.x.
-
verify that it is not showing up as 10M bandwidth in orion
-
I don't think you can do it with no access. You can put a generic (guest) set of credentials in the URL and do it that way. create a view with that map in it. then you can pull up that view and copy the URL. it will look something like this: http://<your server name>/Orion/SummaryView.aspx?viewid=35 add the following:…
-
If the lines contain unique strings you are looking for...for quick work, I just schedule a report with parameters like: example: ethernet interfaces with configured duplex and speed: sh run | i ethern|speed|duplex basically, this will give you ALL lines in config that have any one of those parameters, SO NOT THE CLEANEST.…
-
I'm looking for this as well as the module/views bar (have page with frames).
-
completely unsupported, of course, but....***note gets tricky with quotes and double quoting to escape quote b/c writing SQL to column...test in non-prod or on dummy alert first and always BU DB before doing work. uses alertdefinitions table (pre 11.x)...and this is complex example... I select then update select * from…
-
go into that alert and do a 'NOT' on that device probably using reg-expressions...in content or downloads section there is a great paper on alerts and how to configure.