News:

We really need your input in this questionnaire

Main Menu
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 - Victor Kirhenshtein

#961
Hi all!

We just published NetXMS 3.2 patch release 3 (version 3.2.451). Changes since previous patch release:

- Internal parameters for monitoring syncer performance (Syncer.RunTime.*)
- Improved notification handling in user support application
- Allow usage of chat ID as recipient address for Telegram
- Support for standard SSH configuration file in SSH subagent
- Environment variables from agent configuration file also set for user agent processes
- Improved hypervisor type detection by agent
- Tunnel option can be turned on in Windows agent installer
- Fixed issues with hardened file system permissions in Windows installer
- Added SMBIOS parameters support on FreeBSD
- Fixed issues:
        NX-1635 (Log parser can skip lines in a log file)
        NX-1737 (User Agent Startup and Recurring Notifications not working)
        NX-1810 (Server can cash if scheduled task deleted while running)
        NX-1812 (In the WebUI Filter in Alarm browser hiding column headers and first row when resized)
        NX-1814 (Values of internal parameters Server.QueueSize.Average and Server.QueueSize.Current are inconsistent)
        NX-1815 (FDB cannot be read on certain Cisco switches)
        NX-1816 (Removing node from cluster crashes server)
        NX-1817 (Log file can be read twice after rotation by log parser on Windows)
        NX-1819 (NXSL methods NetObj::bindTo() and NetObj::unbindFrom() crash server when given null as parameter)

Best regards,
Victor
#962
Just checked that exact file - works correctly with server 3.2.400. When you are on login screen, what version is displayed in bottom right corner?

Best regards,
Victor
#963
General Support / Re: Source node and templates?
March 24, 2020, 01:22:19 PM
SSH proxy setting determines which node will establish actual SSH connection. If you are using source node then server will read SSH settings on that node, not on a node where DCI is configured (because connection goes to source node, not DCI owning node).

Currently there is no way to set different source nodes from template. What you can do it to use script DCI instead of SSH DCI, and in script code identify correct source node and call executeSSHCommand on it.

Best regards,
Victor
#964
General Support / Re: UPS - Monitoring MEGATEC
March 20, 2020, 10:15:46 AM
Hi,

make sure that other UPS software is not running when you try to monitor it via agent - otherwise COM port could be in use and agent may not be able to use it.

Best regards,
Victor
#965
General Support / Re: Database export error
March 20, 2020, 10:14:10 AM
It could also be bug in deduplication (when server decides that two nodes are in fact represent same device and deletes one of them). You can try to turn deduplication off by setting configuration parameter NetworkDiscovery.MergeDuplicateNodes to false. Also, try to set debug level to 6, create node, wait for it to disappear, and show log file filtered by that node name.
Also, try to execute command on debug console

show object name

replacing nme with actual name of disappeared node.

Best regards,
Victor
#966
Those lines won't have switch name, only "FDB" prefix.
#967
General Support / Re: Database export error
March 18, 2020, 03:28:57 PM
idata_sc* tables are only needed for TimescaleDB deployment, so it definitely is export bug.

As for disappearing nodes - do you have any SQL errors in server log?

Best regards,
Victor
#968
Hi,

most likely there is some DLL conflict. I'll try to check if all dependencies for pgsql.ddr were added to installer.

Best regards,
Victor
#969
General Support / Re: Updating alert message
March 18, 2020, 10:52:30 AM
Hi,

you can set option "repeat event" for threshold - if set, threshold violation event will be re-generated while threshold is still active, and if EPP rule is correct alarm will be updated (you'll see new message and increased repeat count).

Best regards,
Victor
#970
Please try to set debug level to 5, run topology poll on that device, and then show all log messages with prefix FDB.

Best regards,
Victor
#971
Hi,

OID of what? Device or specific DCI you are fetching?

Best regards,
Victor
#972
General Support / Re: Dashboard and Map questions
March 18, 2020, 10:47:29 AM
I think we can add lock option in 3.3. Regarding icon issues before refresh - looks like image library bug. What version you are using?

Best regards,
Victor
#973
General Support / Re: Database export error
March 18, 2020, 10:43:09 AM
Hi,

what exact version you are using? Please show content of table "metadata".

Best regards,
Victor
#974
General Support / Re: No Topology associations 3.2
March 11, 2020, 10:48:37 AM
Yes, they LLDP implementation is full of inconsistencies. In LLDP local port table switch reports lldpLocPortIdSubtype as 7 (which is "local") and lldpLocPortId as number from 1 to 10, however when looking from other device we see that switch advertises same ports as Id subtype 5 ("interface name"). According to specification it is "a port identifier based on the ifName MIB object, defined in IETF RFC 2863.". However, it doesn't match actual interface name as reported via interface MIB.
Let's check walk results for OID .1.3.6.1.2.1.31.1.1.1.1 in case they report different names via ifTable and ifXTable. If this is not the case then all we can do is to add special handling in LLDP code for that particular type of switches.

Best regards,
Victor
#975
General Support / Re: Connection refused
March 10, 2020, 09:56:43 PM
Probably one of GetDCIValue calls return null value which is later used in arithmetic operation. You may need to add check for null values.

Best regards,
Victor