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

#1
General Support / Port Negotiation Template
August 26, 2025, 10:40:28 PM
Hello,

I'm trying to setup a template that collects port negotiation rates on Mikrotik devices. I get the info that I want on physical ports, but I get 0 results on virtual interfaces. I would like to filter out virtual interfaces so DCIs are not being created.

transport = CreateSNMPTransport($node);
if (transport == null)
 return false;
// get the interface name to return as instance-name
vb = SNMPGet(transport, ".1.3.6.1.2.1.31.1.1.1.1." .. $1);
if (vb == null) or (vb == 0)
 return false;
// filter out loopback
if (vb.value == "lo")
 return false;
return %(true, $1, vb.value);


I've tried using contains(vb.value, "vlan") on the bottom statement, but that just breaks the script.
#2
Hello,

I am trying to monitor network security cameras that have no SNMP functionality. I set the objects to use ICMP to determine node status, but the objects don't generate alarms even though they are offline. I tried resetting the alarms using the link below:


https://wiki.netxms.org/wiki/Reseting_state_of_all_alarms_and_node_statuses

Cameras showing 100% ICMP packet loss show as normal and don't have any alarms even after alarm status reset. Any suggestions?

#3
Hello all,

I would like to add the container name of a node to an alarm message, but I am not quite sure how to go about it. Any suggestions?
#4
General Support / Mikrotik SFP Signal Monitoring
March 28, 2025, 04:20:25 PM
Hello,

I am trying to setup DCIs to collect SFP transmit and receive power values for Mikrotik switches and routers and am running into some trouble. I used the SNMP Walk tool to search for the right OID, but didn't see the right OID listed. I then googled the correct OID and tried creating a DCI with that OID, but my DCI isn't collecting proper values - just zeroes. 

Quote1st / sfp1:
.3.6.1.4.1.14988.1.1.19.1.1.9.1
iso.org.dod.internet.private.enterprises.mikrotik.mikrotikExperimentalModule.mtXRouterOs.mtxrOptical.mtxrOpticalTable.mtxrOpticalTableEntry.mtxrOpticalTxPower.1

I would really appreciate any direction anyone could provide. Thanks!
#5
General Support / Web Service Monitoring
July 01, 2024, 09:23:05 PM
Hello all,

I am trying to monitor the status of a door access controller by using a DCI that monitors the status of its web UI as ICMP is blocked. I used the NetworkService.Status and relevant URL, but my DCI goes inactive and does not pull a status code. I have verified that the web page loads on the NetXMS server itself.

Any suggestions?



#6
General Support / PDU SNMP Parsing
March 08, 2024, 04:21:30 PM
Hello all,

I have a PDU that I am trying to monitor power usage and temperature for, but the oid that I utilize for this purpose reports data in one long string string like this -

type=Master,,voltage=121.7,current=0.136,activePower=0.007,powerFactor=0.422,energy=2.893,temperature=23.3,humidity=30.7

What would be the best way to separate all of these data points into different DCIs?

#7
General Support / Monitoring Mikrotik Temperatures
July 11, 2023, 09:44:36 PM
Hey all,

I'm trying to monitor temperature on my Mikrotik devices using the attached template configuration, but not having much success. Does anyone have any suggestions?

#8
General Support / Alarms based on Topology
May 22, 2023, 11:40:25 PM
Hello all,

I am attempting to limit alarms for nodes based on topology so I only receive alerts for the first node down in a chain. Would someone be able to point me in the right direction for this?

Thanks!
#9
General Support / Difficulty using the CSV Importer
April 27, 2023, 10:17:50 PM
Hello all,

I am very new to netXMS (using ver 4.3.5) so please be patient.  Currently working on migrating network monitoring for a WISP off of the Dude to netXMS. I figured the best way to go about this would be to import a csv from the Dude device list. I got the list to pass all the checks, but I am getting the following error -

SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
Error: NXCException - Access denied.

I verified that my credentials and IP address for the netxms server are correct. I appreciate any suggestions.