Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - jhuliagraziella

#1
General Support / Stable Release 2.0 ?
May 15, 2015, 08:59:19 PM
Do you have any prediction of when will be the next stable release? :)

Thanks,

Jhúlia Graziella
#2
I made a script in python to populate a network, in which I condigure the name, IP, snmp port, snmp community and so.

In class org.netxms.client.NXCObjectModificationData, when using the method void setSnmpVersion(int snmpVersion), I noticed the following:
- If I pass number 1 as a paramether to the method, it configures as version 2c;
- If I pass number 2 as a paramether to the method, it configures as version 1.

Is this supposed to happen? Because of that, in my script I wrote this to configure correctly:

   if objectSnmpVersion == "V1":
      objectSnmpVersion = 2
   elif objectSnmpVersion == "V2C":
      objectSnmpVersion = 1
   elif objectSnmpVersion == "V3":
      objectSnmpVersion = 3
   md.setSnmpVersion(objectSnmpVersion)
      
but didnt' like it...  ???
#3
I'm currently playing with NetXMS and populated my network with about 1000 nodes and then I created a new Zone and put an agent to be responsible for polling some nodes that are under a proxy server.
Now I'm dealing with the followint issue: whenever I exclude a node from the Infrastructure Services container it DOESN'T get excluded from its corresponding Zone on Entire Network! And if I try to re-create a node with same IP it returns an error because tecnically it already exists. So every time I exclude a node from Infrastructure Services I have to manually exclude it from Entire Network and it's kinda bugging me.
Another matter: if I move a node from a zone to another and then try to re-move it back to its initial zone it returns an error telling that the node already exists in that zone (but...wait, what? It does'nt, I have moved it!! D:  )

Any ideas of what I could do about this?  :'(

Thanks everyone for the great support,

Jhúlia Graziella
#4
I'm starting to use NetXMS and when I populated the network I decided to put each node in containers corresponding to its physical location's neighborhood. The problem was: when I tried to apply templates to the nodes I couldn't just select the containers which had the nodes, I had to open every container and select each node manually.
This sure isn't a big deal, but this kind of work can be time-consuming, monotonous and tiring when dealing with large networks. I mean, imagine selecting 2000 nodes manualy without being able to just select first, hold Shift and select last?
So my suggestion would be to add the possibility to apply a template to all the nodes that are children of a container by selecting the container itself.
For example, if I have the following directory subtree:

Infrastructure Services
|
|_Container A
|  |
|  |_Container B
|  |  |
|  |  |_node 1
|  |  |_node 2
|  |  |_node 3
|  |
|  |_Container C
|     |
|     |_node 4
|     |_node 5
|
Templates
|
|_Template T

And tried to apply template T to directory A, T would be applied to all nodes from node1 to node5.
What do you think?

Thank you,

Jhúlia Graziella