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 - AleCoelli

#1
General Support / Network discovery filter script
April 10, 2022, 10:39:42 PM
Hi,
this is my Network Discovery configuration:


and this is Filter::NetworkDiscovery scipt:
tracelevel=0;
trace(tracelevel, "======= Filter::NetworkDiscovery ==========");
return false;


Nodes on 192.168.150.0/24 are discovered and added to the right Zone through proxy, the script isn't runned (no log trace) and should filter all (fixed return false).

My server version is 4.0.2227

Do you have any ideas?

thanks
Alessandro
#2
General Support / Bug on CreateDCI Function
April 02, 2022, 01:24:26 PM
Hi, I think that on 4.0-2227 ther's a bug in CreateDCI Function, in docs pollingInterval parameter should be 0 for "default", but if you use it the new DCI will have 0 as pollinInterval time. If I use null all seems to be fine.
retentionTime parameter works fine with "0", but with null do strange things, randomly some DCI will have default, somother will have a blank value

Test script to test it:


NodeName="xxxxx";  //existing node name

Mynode = FindObject(NodeName);

value=%(1,2,3,4,5,6,7,8,9,10);  //new dci names

for (v : value) {
     if (!FindDCIByName(Mynode, v))
     {
      println("-------------------NEW----------------------------");
newDci = CreateDCI(Mynode, DataSource::INTERNAL, v , "TEST " . v, DCI::FLOAT, null, 0);  // <<-- null,0 = OK  // null,null = random retentionTime result // 0,0 = 0 pollingInterval set
     }
    else
    {
    println("-------------------" . NodeName . "->". v . "  ALREADY EXIST----------------------------");
    }
}


Thanks
Alessandro
#3
Feature Requests / Add text document to a container
April 28, 2020, 08:13:10 PM
Hi,
  managing a lot of different customer divided by container could be a lot easyer if we coul add (and view/edit) simple text files and pdf linked into container.
We already write some information inside the comments of a container, using also dedicated container only for that, but it's not easy to maintain and access.

Thanks
Alessandro
#4
Feature Requests / TR-069 support
January 10, 2020, 07:12:27 PM
Hi, TR-069 is a powerfull tecnical specification that should replace SNMP for devices monitoring, as well as allowing a more effective CPE configuration.

Are there any plans to implement it in NetXMS?

Thanks
Alessandro