Jan_Pelousek ✭✭✭✭✭

Comments

  • Hi contracer, you can use it. The evaluation version is the same as the same installer as you can download from CP. The evaluation version is working without limitation for 30 days. After then the polling is disabled. After entering license key into licensor you'll get the Full version according to your purchased license.…
  • I suggest you to upgrade to NPM 10.4.2 where the Custom property editor is significantly improved and also the Inline editor, where you can edit CPs in table as in old CPE.
  • That's strange. Please restart the Orion Services via Orion Service Manager and try it again. If it doesn't help, please create support ticket.
  • Hello, for this purpose there exists sample script, which is bundled with your SDK installation. It's by default located in c:\Program Files (x86)\SolarWinds\Orion SDK\Samples\PowerShell\CopyNodes.ps1 . This will copy the nodes from one orion to another. Copies Nodes, Volumes(when enabled in script), Intefaces(when enabled…
  • Hello. You create the Node as new object. No deduplication logic is brought here so it could be used the user's way. If you want to suppress creating of the duplicates, you have to do it on your own. Like [pseudocode] $IPAddress='1.2.3.4' $nodeProps = @{IPAddress=$IPAddress; Caption='blabla'} If ((get-swisdata $swis…
  • Guys, SQL server 2012 is supported by SolarWinds since NPM 10.3.1. Windows 8 and Windows Server 2012 are supported since NPM 10.4 which is already released. If you are planning to upgrade your environments in 2013, I suggest you to wait for NPM 10.4.1 which should be available in early Q1. Of course in case you use more…
  • That may be various problems. But firstly I'd try to run c:\Program Files (x86)\SolarWinds\Orion\OrionPermissionChecker.exe to repair most obvious pain points of permissions. If there are more complicated issues, support ticket should be the next step.
  • Yes, you should be able to see that normally. The easiest way from my POV is to use the Message Center, tick "Show Audit Events", set up other filters and you should be there.
  • Hello, the Verbs are module specific and depending on the installed product you have accessible verbs. The full list of verbs usable for your product combination you'll get by querying (against SWIS v3) SELECT Name, EntityName FROM Metadata.Verb The verb arguments including their definitions, types etc. then by: SELECT…
  • Hello, that seems to me to be the DNS resolution issue. Make sure you're able to resolve the hostname (apparently Orion) to your primary IP address. If not, add the IP - hostname pair to the Windows/System32/drivers/etc/hosts file and restart SWISv3 and BusinessLayer, after all perform IISreset
  • This is not much safe... Direct removal from DB by delete doesn't invoke consequential actions, so it will leave orphaned historical data, pollers, etc... To delete the object you just need to know it's uri (e.g. as richard stated) and valid connection to SWISv. Example for REST: curl -X DELETE -H "Content-Type:…
  • Hi cdljel, If I understand well your needs, this condition should work for you. Or it isn't working? Honza
  • Well I can imagine the world map will be similar formost of users, just differing by the location of the aggregated Node/group containers. Aren't you more asking about the Network Atlas maps?
  • I met situations when this was caused by removal of some used custom property, so just go through the audit logs ifrom recent period (since you observe it) if somebody didn't do that and if so, try to recreate it. If this is not the way, create the support ticket. It can be caused by many things, so there will be needed…
  • Hello, this error is usually caused by different time settings between the server (SolarWinds Information Service on your Orion server) machine and the client (SDK based script in your case). Please check if the time on the server matches to the time on the client. I think timezone doesn't matter, but can't remember 100%.…
  • Hi deathunt, after disappearing from this page (by acknowledging or run out from number of displayed alerts) the alerts are still present in AlertStatus table and can be viewed also via Advanced/Basic alert manager, where you are still able to view them, clear and acknowledge/unacknowledge.
  • Hello, to check which arguments and their structure the verbs do accept, you can check the entity Metadata.VerbArgument (XmlTemplate property). So in case of the CreateAccount verb the query will look like: SELECT EntityName, VerbName, Position, Name, Type, XmlTemplate, XmlSchemas, IsOptionalFROM Metadata.VerbArgumentwhere…
  • Hello, the problem with this resource is, that all displayed properties must be initialized to Not-NULL value, to make it working, please initialize remaining properties as following: IPAddressGUID= [guid]::NewGuid(); Location = ""; Contact = ""; NodeDescription=""; Vendor=""; IOSImage=""; IOSVersion=""; I hope it helps.…
  • Which Orion platform do you use? Which Powershell version? Assuming the variables($getnodeuri, $getContainerid) are properly filled in, the same construction works perfectly for me.
  • Hi, which pollers do you add when you're creating your WMI nodes? When I create WMI nodes, I usually add following set of pollers. It should work in most of cases: "N.Status.ICMP.Native", "N.ResponseTime.ICMP.Native", "N.Details.WMI.Vista", "N.Uptime.WMI.XP", "N.Cpu.WMI.Windows", "N.Memory.WMI.Windows" You may check the…
  • Hello clausendb, first of all sorry for inconveniences. The issue is not reproducible for me with latest MS updates (NPM 10.5), so we need to know some more info. 0. Which NPM version do you use? 1. Which OS do you use on your Orion Server? 2. What is the version of the Internet Explorer on your Orion server 3. According…
  • Hi deathunt, could you, please provide more information which product are you trying to connect to? I see you are using connection to SWIS v3. So the question is if the Orion you are connecting to has really installed SWIS v3 (e.g. NPM 10.3 +). If you connect via SWIS v2 is it working correctly?
  • Hello, I'm thinking about possibility to acomplish what you need by usage of combination of daydiff and datetrunc functions. Example of usage: SELECT DayDiff(DateTrunc('week', keepalive), keepalive) as dd FROM Orion.Engines Would this be suitable?
  • Hello, this function is more for internal diagnostics while development, so that's why it's not public documented/officialy supported. However when you already discovered this, you'll just append WITH QUERYPLAN statement after your query. However I'd say the only thing usable for you in this case will be the output query…
  • ad 2. Yes. you can use ${NodeID} macro in the where condition similar way as described on
  • Hello. Problem is, that this verb doesn't belong to Orion.AlertStatus entity, but to Orion.AlertActive. The argument then is array of alertObjectIds, which you get from Orion.AlertObjects entity by filtering to the EntityUri (or other unique value, which also may be in your case EntityCaption, but not in general) and the…
  • Hello, you're right. AFAIK that's something that is planned in the future. For now you have to initialize the values (not all) as on example: $newNodeProps = @{ EntityType="Orion.Nodes"; IPAddress='1.1.1.1'; IPAddressGUID= [guid]::NewGuid(); Caption='blabla'; DynamicIP=$False; NodeDescription="desc"; EngineID=1; Status=1;…
  • Hello folks, the issue you're experiencing is most probably known issue, we will surely fix soon. Following workarounds should help (you have more choices): 1. Use Chrome of FireFox 2. Disable the Windows Authentication (Settings -> Web console settings -> Windows Account Login) 3. Turn IE into IE9 compatibility mode…
  • Hello, it should be possible by using the CRUD operations. Good place to start and find out how it works is the Samples section on Github. Highest number of samples are for Powershell (and example script for Python as well), so this is good place for investigation, but in general the flow will be : 1. Define the Object…
  • Hi, I looked at your issue and it is not as simple as it may look like. It happens because the SDK 1.5 has the support for SWIS v3 and without the version switch in connection string you are by default connecting to the SWIS v3 (also mentioned in the error message). If you want to use the new SDK for your current…