Comments
-
Thanks madhavan. I changed succesfully next rediscovery time but that node did not discovery and next rediscovery time was calculate referenced by old discovery time. For example; Now : 10:18 AM First Next Rediscovery : 10:20 AM Normal Next Rediscovery : 10:50 AM Updated Next Rediscovery : 10:22 AM After Update Should Be…
-
I work on NPM 11.5 version. Is it necessary plus version or the version is OK?
-
The reason Web App under SW web site is to get username (individual account) and pass through web app. I can publish as another web site but I don't know how to passing through username via link. For example; The web site link: somelink:port/default.aspx I logged by 'user01' and I clicked the link. Web App must know who i…
-
This error get often while container/node adding (or any process), especially when want to add sequentially. For each process, client is opened, ( via command "client.Open();" ) after adding node/create container ( "client.Invoke("Orion.Container", "CreateContainer", element);" etc. ) and finally client is closed ( via…
-
I just wanted to learn that if the duplicate IP automatic control is possible in SWIS. I understand I must do this control by code-based. Anyway thanks Jan for help.
-
Thanks for quick reply madhavan
-
Hi derhally, I created successfully world map point. I have an another question. After create world map point, there is return url (swis://<hostname>/Orion/Orion.WorldMap.Point/Instance="Orion.Groups",InstanceID="5"). How to update any world map point via SWIS? What parameters passing to Update method for…
-
I found the solution. I just want to create subcontainer. I was creating via dynamic query. I found the static Container ID method. There is difference at MemberDefinitionInfo property section: // cont : Container Object. if (type == 1 || type == 2) { memberDefinition = new MemberDefinitionInfo { Definition = cont.uri, //…
-
Hi mwb There are two solutions. * If you create "Web Report" with same SQL query, you can pass over the limitation problem. * If you write query with CTE (not include "WHERE" and some pattern that I couldn't exactly work out) on Report Writer, you can pass over the limitation problem. So I choose the number 1 and the…
-
Hi Diner, I just want to build dynamic query like that. Can you give me a sample filter what i write? I want to see about performance situations. Are below filters right combinations? filter:/Orion.Groups[Contains(Description, 'WAN')] or filter:/Orion.NPM.Groups[CustomProperties.UnitID='71' AND Contains(Description,'LAN')]
-
Thanks Diner, I always forget this trick. This is my fault.
-
Thanks, I will try that code asap.
-
Visual Studio 2010 and NPM 10.4.1
-
I meant "Hardware Health Sensors" check. I don't know to add which pollers or something. (Maybe there is another way to do this.) This device on I work/add is Cisco. While is not checking hardware health sensors, the model info is not updated. It s the problem. So I have to check while node addingthis poller (or prop).
-
Thank you for information tdanner. I will appreciate to do this asap.
-
Hi Diner, Your reply is OK for me. Thank you so much.
-
I want to add node to NCM. I can add/delete/update node to Solarwinds via SWIS. I researched and found AddNode and AddNodeToNCM on SWQL at Cirrus.Nodes entity. I can't add existing node at Solarwinds to NCM via AddNode method, passing coreNodeID. I got an error "Node Id 2 does not exist Parameter name: nodeId". So, how can…
-
Hi tdanner, There is a stack trace message in Fault exception. Also, we encoutered with this fault on upgraded systems. Can be related to Orion SDK version? PS:I installed last version but same error occured.
-
Thank you tdanner. I got it and added credential (node settings) to WMI node. I have one more question about update node settings. I use that below code for update node settings but I got an error. swis.Update("Orion.NodeSettings", new PropertyBag { {"NodeID", nodeID}, {"SettingName", settingName}, {"SettingValue",…
-
Hi maria.bungau, Thanks for reply. Yes, I am talking about the Popular & Recent Content on home page. I think if polls discard from activities (at least on home page), follow the contents about SW etc. will be easier. That's what I say.
-
Hi tdanner, That's SWIS error log. It seems network problem but I didn't undertand exactly. PS : There is no error log in NPM.BusinessLayer log file. ERROR SolarWinds.InformationService.Core.InformationService - (null) (null) Exception caught in method SolarWinds.InformationService.Core.InformationService.Invoke…
-
We tried this solution but no change.
-
The CRUD operation code block is at general DLL which is used already before like creating/updating nodes etc. The property bag values are Objs.PropBag_Node pbNode = new Objs.PropBag_Node(); pbNode.Allow64BitCounters = true; pbNode.Caption = oNode.Caption; pbNode.City = dr["CITY"].ToString(); pbNode.Contact = "";…
-
Could you please give me any example about this like below code? DateTime dt = DateTime.Now.AddSeconds(30); string _nextDiscovery = dt.Year.ToString() + "-" + dt.Month.ToString() + "-" + dt.Day.ToString() + " " + dt.Hour.ToString() + ":" + dt.Minute.ToString() + ":" + dt.Second.ToString() + ".000";…
-
Hi again tdanner, There is a screenshot for WMI node statistics having 'fixed disk'. There is no problem to get stats and collect data for node itself. But the fixed disk have no statistics.
-
Yes tdanner. When I try to poll and rediscover, I can get details and statistics for WMI node itself. I am out of office now, I will put an image/screenshot about that, tomorrow
-
OK. So, I have another question. What is the SQL table relationships about the items (DHCP Server, Scope, Nodes etc). I tried to create below query but it is wrong. At least, can you help me about the relationship query? Maybe it is given an idea for possible update query. SELECT IPAM_Group_Scopes.Address AS ScopeAddress,…
-
Ok, here is the my main question to work with that. We added the node via "WMI". I can see LAN interface on node at "List Resources" screen. How can I discover/add the interface automatically after add node? If is it possible can you give me some example? I know there is an example like "CRUD.AddInterface". But the example…
-
Thanks tdanner, That node is added by "Windows Servers: WMI and ICMP" option. I just realized now.
-
Hi Diner, I try to update custom properties for group bu I got error "Navigation property 'CustomProperties' does not exist" And there is my update code block. swis.Update(uri + "/CustomProperties", new PropertyBag { { _Pair.Key, _Pair.Value } });