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

Messages - mmarin11

#16
Dear NetXMS community.

I'm trying to integrate Ekinops transport gear into NetXMS and this equipment requires the use of multiple snmp communities in order to get the data for specific slots. For example if we are trying to get interface data of card in slot #3 we have to append the slot number to the snmp community, if the snmp is public, we need to set the community as public3. Is there a way to specify the community in the CreateSNMPTransport NSXL function as an argument in order to use multiple snmp communities for the same node?

Thanks
#17
Thanks Victor

It worked!
#18
Dear community

I'm trying to create a dashboard with a list of DCIs that have a specific description. I'm tracking service latency and a node can have multiple DCIs with latency description. If I create the object query as dashboard element I get the following error 'Cannot execute object query: Request timed out' I'm probably doing something wrong with the script. Does someone has an example on how to use dashboards object queries?






list=GetAllNodes();

foreach (item : list){
   if (classof(item) == "Node")
   {
      for(d : FindAllDCIs(item,null,"*latency*"))
      {

         v=GetDCIValue(item, d->id);
                  if (v == null) {
            continue;
         }
         name = d->name;
         description = d->description;

         
         
         return (item->snmpSysName. " " .description ." ".v);
         
      
      }
   
   }


}