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

#1
General Support / Linux SNMP template
September 08, 2021, 10:50:52 AM
Dear NetXMS community

We have some servers that run Linux for voice applications and vendor does not allow us to deploy third party packages (NetXMS agent). For this scenario the only way we have to monitor the server is using SNMP.

Is there a template for Linux servers monitoring using SNMP? The one that is included by default is based on NetXMS agent.

Thanks in advance

Regards
#2
General Support / Re: Template autoapply rules
August 17, 2021, 08:31:30 PM
The code that worked is:

Thanks Filipp/Iweidig


parents = GetNodeParents($node);
for (p : parents) {
   if (p->type == 5 && (p->id==109031 || p->id==55839 ||p->id==177))
        {
      
      return true;
   }
}
return false;
#3
General Support / Template autoapply rules
August 15, 2021, 09:37:13 PM
Dear community.

I'm trying to apply a template for ICMP monitoring to devices that are under specific containers and I'm having issues with the Automatic apply rule configuration

for (p : $node->parents) {
   if (p->type == 5 && (p->id==109031 || p->id==42342))
      return true;
}

What would be the best way to apply a template if the device is under specific containers?

Has someone used the new function isDirectParent(object)?

Thank you






#4
General Support / ModbusTCP support
June 15, 2021, 06:57:37 PM
Dear community. We are trying to monitor power generators which use ModbusTCP protocol

Is there ModbusTCP support in NetXMS 3.8?

Is someone using NetXMS to monitor power generator using Modbus protocol?

Thank you
#5
Thanks Alex/Filipp

I will try proposed options.
#6
Dear community

I'm looking for a way to create a Dashboard with all BGP sessions that are down from multiple devices. The way I'm doing it is creating independent DCIs under the NetXMS server that return tables and other variables and then include the data in a Dashboard. Is it possible to return multiple variables using the same script? For example, return a table, an integer DCI, a string, etc. The idea would be to use a single script instead of multiple ones.

Probably there is better way to achieve same report

Your input would be appreciate it

Thank you

#7
Thanks Filipp

DCI grouping would be great
#8
Dear community

I'm creating tables using NXSL Table object to group DCI by description and I was wondering if there is a way to filter the table output in a similar way to that is available for Alarms.

Thanks
#9
Thanks Victor/Filipp

It works
#10
Dear community

I'm trying to create a summary table that includes interface name and speed for a specific type of equipment

I'm using the following DCIs as columns in the summary table

.1.3.6.1.2.1.31.1.1.1.1. (Interface Name)
.1.3.6.1.2.1.31.1.1.1.15 (Speed)

However if I run the summary table it does not return any records.

Is it possible to create these type of summary tables based on node interfaces instead of DCIs?

I would appreciate your input

Thanks









#11
Thanks Filipp

I will try the snmpwalk approach

#12
Dear NetXMS community

Is there a NXSL snmp method with support for snmpgetnext? I'm trying to write a script to monitor advertised and received prefixes for Juniper BGP sessions.

Thanks

#13
Thanks Victor & johnnyva. It works

#14
Dear community

Is there a way to disable the route table polling globally? Or does it have to be configured on a per node basis?

Regards
#15
Thanks Filipp!