Comments
-
Excuse me, but I don't see any relation to the topic. Joe didn't mentioned any problems with MSMQ installation. Regarding the remote polling, lynchnigel already posted it, so for completeness I edited my post, so it will be visible why the APE needs the MSMQ
-
Hello. Described situation seem familiar to me. That's probably caused by known issue (finally will be fixed) in situation, when you already once launched the installer on the backup machine (even when you immediately canceled it), it get's the main role in the registry and following server role selection wizard doesn't…
-
Could you, please tell us, which Orion SDK against which version of Orion (or NPM version) are you using? Does it work if you use the connection to SWISv3? (without the -v2 switch)? Can you try to use the IP address intstead of the hostname for the connection?
-
Hello, it's hard to guess without the Code snippet, but I suspect you're just missing the polling settings in the property bag (like PollInterval, RediscoveryInterval or so...) for propper polling scheduling. Is there possible to share the piece of code (at least the PropertyBag definition), where creating the Node,…
-
Hello, Here's the guide, bundled in the local help zip file (Stored here: http://www.solarwinds.com/documentation/Orion/docs/OrionLocalHelp.zip). I hope it helps. H.
-
Hi cschneide: Your desired information are MIB values returned by your SNMP agent (on monitored device). These information are get when discovering the device and must be set correctly on the device, so the SNMP agent can return correct values.
-
Hi Craig, the example I gave is working SWQL query based on SWIS built in functions. As far as I remember both DayDiff and DateTrunc functions should be available since NPM 10.5 ( or 10.6, not 100% sure now). This can be used also in the filter conditions. Example for getting the max cpuload: Select c.node.caption as…
-
How often do you run those discovery profiles? There's default Discovery profiles retention of 60 days. Profiles which didn't run more than this value are deleted by the nightly DB maintenance. You can check this value in Settings / Polling Settings / Discovery retention.
-
Well I'd say it doesn't work exactly as you want. I believe the resource with query I provided shows all nodes, which are members of some groups, but not specifically the one, for which the resource is placed on it's details page (because of the bug I mentioned). Btw. always welcome.
-
I'm glad it helped. Feature request created (for reference tracked under CORE-7886)
-
Yes, this can be changed of course to your server as well as the access credentials. The $objectUri you'll then feed oviously in the foreach loop of needed uris. I'm glad it helps you (Hehe. It took some time as I several times went the wrong way to get the session cookie :-) ). The variable returned by function is the…
-
Hi the second is invalid as Orion.NPM.Groups entity doesn't exist. E.g. for interfaces you create the filters like filter:/Orion.NPM.Interfaces[Contains(CustomProperties.Comments,'fgh') AND Contains(FullName,'ju')]...The same principle is with Orion.Groups.However please note this is really unsupported and recommended. One…
-
Hello, I just want to make sure if you have the latest documentation since the SDK 1.8 docummentation is talking about the new topology pollers. There might be possibly some problem in the SDK upgrading procedure. So please confirm. Seems to me like problem with outdated name of the Topology poller. Btw. which NPM version…
-
Hi conguir, if you want to execute SWQL queries from the website interface, than use: SWISv2: /Orion/Admin/swisv2.aspx - At this page the queries executed from this page are executed against SWISv2 SWISv3: /Orion/Admin/swis.aspx - At this page the queries are executed against SWISv3
-
Unmanage itself requires the admin rights. This solution would require installed SDK on the machine, but according to the credentials security there's possible to compile the script into the exe file, so the user can't see the script content (incl. the SWIS credentials). It was just an idea about "how to distinguish if the…
-
Possible reasons: - You're connected to SWISv2 -> Connect to SWISv3 - The account doesn't have admin rights -> Use admin account or certificate connection
-
It seems to be quite weird issue. It seems to me that the poller is working in german mode. There are several more places that drive localization. Could you, please, check following. * Primary locale:* open regedit * Goto HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\SolarWinds\Orion\Core - suits to 64bit OS * Check…
-
This shouldn't be a problem because the user logins/logouts are being audited and you can view it via Message Center and you can also filter it by user. Please check the auditing feature in Message Center.
-
Folks, we just found the root cause of the HF3 application failure. There's the typo in the readme. Everybody who applied the HF3, please correct the steps as stated below: * Restore the original file, by default placed in C:\Program Files (x86)\Common…
-
Ah... excuse me. You're correct. It's NPM 12.0.1
-
Hello, unfortunately the API is not ready for such tasks. Although there's possibility to clear the alert from the website, on backend it's most probably doing the same dirty action as you do. Sorry for complications and thanks for understanding. Honza
-
I'm not aware of open api for modification of the engine. Just the one on top of existing. Regarding the performance - it's added layer between DB and web, so it can't be as fast as the DB itself. Some of the entities aren't directly mapped to DB and are performing additional computations. Each release we're working on…
-
Hi Steve, thanks for the news even if the issue wasn't resolved yet. I looked at the issue once more and it seems to be the network problem. Please try following: 1. Launch cmd -> nslookup -> orion.unisource.corp - If my assumption is right it should fail. Then go to your orion server and in CMD run command " ipconfig…
-
Hello, which Script editor do you use? Or if you just use something like Notepad, here it looks like you changed the codepage while saving.
-
That's pretty dirty:-) Just interested why you need condition based on namely IPAddressGUID??? IPAddressGUID in some cases mightn't be unique (e.g. same node with same IP polled by more pollers. IPAddressGUID is not in fact unique GUID... Just IP coded to special format per algorithm), NodeID is unique for specific device…
-
Than you will use the update syntax. Here's example for changing the PollInterval and rediscoverInterval, but you can change random property, belonging to the Nodes. You always would need Uri (unique object identified), connection to your Orion SWIS, properties and their values: Get-SwisData $swis "SELECT uri from…
-
You mean editing of the Custom property values? At this time is available NPM 10.4, which has implemented web-based custom property editor. Or in Jan 2013 will be released NPM 10.4.1, which will contain some fixes and minor features. Until the upgrade you can edit the CP values via SQL management studio, which can be…
-
Ah, many thanks, Tim, for clarification. And huge sorry for misunderstanding. Regards, Honza
-
That's functionality of the THWACK. When you enter the advanced editor (switch is in the top right corner), than under ">>" you'll find the syntax highlight choice. Then just select the language (I've chosen SQL as is very close to SWQL). That's the trick :-)
-
The module is the part of Orion SDK and related assemblies should be installed while installing the package. Then is enough to add the snapin to powershell by "Add-PSSnapin SwisSnapin" command. Then you can start your scripts e.g. like this:…