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

#1
Hi we found this too it works but you can only right click on the Axis.

Hope this helps
#2
Up vote this also. This would be very helpful for us also.
#3
General Support / Re: BGP Monitoring cisco
April 21, 2022, 10:10:23 AM
Thanks both very helpful have now implemented this.
#4
General Support / BGP Monitoring cisco
April 14, 2022, 12:59:53 PM
Hi wondering if anyone else is already monitoring BGP on cisco devices. Wondering how others are doing this SNMP trap or Syslog ? How are you trigging alerts?

Thanks in advanced
#5
Hi have upgraded our NetXMS from 3.9.298 our alarm summary has changed back to default. However I checked the server configuration and this was set correctly. Checked scheduled tasks - show system tasks and this was set to 0 0 * * * rather than the time we set 10 06 * * * in server coniguration. Maybe a bug?
#6
Thanks thats helpful.

like the ideas of this one alot!  Any chance this can be moved up the list? https://track.radensolutions.com/issue/NX-753
#7
General Support / reporting NIC Speed into summary table
February 18, 2022, 12:44:41 PM
Looking to audit our windows machines for NIC card speed - IE check what speed they are connected as 1Gb etc.

Is this possible as the interface tab shows blank under speed. Using agent.

Want to be able to view this in a dci summary table. Any help appreciated.
#8
General Support / Re: DCI from table element
February 18, 2022, 12:19:22 PM
Thanks for this have used this for our own netxms.
#9
I managed to get this working just need a few tweeks as sometime receive 0 randomly. Any ideas welcome.

Description - QNAP - Storage - Disk - Logical - available {instance-name} (%)

parameter
.1.3.6.1.4.1.24681.1.4.1.1.1.2.3.2.1.3.{instance}

Transformation
// We are originally querying the actual volume size. This is required for
// calculation and to have an instance to work with.
volumeSize = $1;

// Obtain the actual instance we're after. The last octet in the OID. Result will be stored in $1.
$dci->name match "^.*\.([0-9]+)$";
// Build OID to use to obtain space used
oid = ".1.3.6.1.4.1.24681.1.4.1.1.1.2.3.2.1.4." .$1;

// Connect to node via SNMP
transport = CreateSNMPTransport($node);
if (transport == null)
return false; // node does not support SNMP or transport cannot be created

// Obtain matching used space to calculate usage in %, which we can actually alert on.
volumefree = SNMPGetValue(transport, oid);
if (volumefree == null)
return false;

return format(int64(volumefree) / volumeSize * 100,1,2);
#10
Hi looking for a bit of assistance of where i'm going wrong trying to calulated used % on logical qnap drives via snmp.

the qnap snmp has used and total snmp but not %.

Have the following

parameter

.1.3.6.1.4.1.24681.1.4.1.1.1.2.3.2.1.4.{instance}

Transformation

sub main()
{
diskfree = GetDCIValueByName($node,SNMPGetValue(transport,".1.3.6.1.4.1.24681.1.4.1.1.1.2.3.2.1.4.".$1));
disksize = GetDCIValueByName($node,SNMPGetValue(transport,".1.3.6.1.4.1.24681.1.4.1.1.1.2.3.2.1.3.".$1));
return (100*(diskfree/disksize));
}

instance discovery
snmp walk
.1.3.6.1.4.1.24681.1.4.1.1.1.2.3.2.1.1

Let me know where i'm going wrong or if something is missed happy to build this in to the qnap template once working and share.

Thanks
#11
Netxms Version 3.6.264

SNMP version 2

Interfaces are showing fine however no ports are showing on the ports tab.

Screen shot of device details included let me know if more information is required.
#12
I've followed the steps below.

My query is regarding the last step which package should be used to install the agent once the other steps have been followed. Currently running agent 2.2.8 on Raspberry Pi. Ideally would like to run v3.
#13
General Support / Re: Cisco switches node overview
June 27, 2019, 02:00:35 PM
Also, have the same issue with some Cisco 9300 switches. Ports not showing in the port view.

Model C9300-48P
.1.3.6.1.4.1.9.1.2494

Netxms version - 2.2.8 planning to upgrade to 2.2.15 do you think it might be fine in this version?

Let me know if any further details are required i.e port layout.
#14
General Support / Re: Raspberry Pi 3 - Compile Agent
September 14, 2018, 04:25:22 PM
Thanks for this post I'm running an agent as a proxy in an off-site location running 2.1-M1. Looking to upgrade to 2.2.8 has anyone else already done this and can point me in the right direction.

Thanks

#15
Thanks, Victor that's helpful info.