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

#811
General Support / Re: Active sessions from Grafana
August 10, 2020, 11:35:26 PM
Hi,

at first glance it looks like issue with data source plugin. Somebody from the team will take a look.

Best regards,
Victor
#812
Hi all!

NetXMS 3.4 patch release 3 is published. Changes since previous release:

- Added driver for SAF Tehnika Integra devices
- Improved handling of UNICODE characters in external parameter output on Windows
- Fixed UI crash when object query dashboard element is incorrectly configured
- Fixed topology display issues in UI
- Fixed issues:
        NX-1916 (Device could be marked as supporting ENTITY MIB when it is in fact not supported)
        NX-1920 (Save deleted DCIs between restarts to delete it's data on housekeeper after restart)
        NX-1921 (SQL query failed into alarm_events: 22001 ERROR: value too long for type character varying(2000))
        NX-1922 (Spelling mistakes in Java API)

Best regards,
Victor
#813
Hi,

they match. If %6 expands to empty string it means that "instance" attributre in DCI is not set. Are those DCIs created by instance discovery or manually? If manually, did you set "instance" field?

Best regards,
Victor
#814
For reference, for LLDP based topology working correctly with Mikrotik router software should be at least 6.46 (so current LTS version will not work).

Best regards,
Victor
#815
General Support / Re: Netxms tomcat .war deploy
August 04, 2020, 04:11:33 PM
/var/lib/tomcat8/webapps is where application is deployed. But working directories for applications are in /var/lib/tomcat9/work/Catalina/localhost - try to delete them.

Best regards,
Victor
#816
Feature Requests / Re: DCI values over SSH
August 04, 2020, 04:05:14 PM
Hi,

it's not a step-by-step guide, but basic information is available in administration manual: https://www.netxms.org/documentation/adminguide/ssh-monitoring.html

Best regards,
Victor
#817
Try to change DCI data type to "String" and request history - will it show something?

Best regards,
Victor
#818
General Support / Re: LDAP with TLS
August 04, 2020, 10:58:55 AM
Hi,

we are using LDAP client provided by Windows (Wldap32.dll), so I suppose it has to use Windows certificate store for root CA certificate. There are no mention in documentation about any specific requirements for LDAP client to work over TLS. Are you sure that your LDAP server picks up correct certificate and actually supports secure connection? As I remember it is quite tricky process to setup Windows LDAP server for TLS. Did you check LDPAS connection with other tools (ldp.exe for example)?

Best regards,
Victor
#819
General Support / Re: Network map - L2 layout changes
August 04, 2020, 10:42:19 AM
Hi,

try to set debug level 6 for tag obj.netmap and check server log if objects and/or links are actually removed or added when layout changes.

Best regards,
Victor
#820
Response time for community support is really not guaranteed, and depends on multiple factors, mostly complexity of the issue and available resources. We always try to do our best but we cannot cannot promise fast handling for all issues. This bug will be looked at when someone from the team will have time.

Best regards,
Victor
#821
General Support / Re: Netxms tomcat .war deploy
August 04, 2020, 10:31:05 AM
Sometimes it helps to undeploy application, stop Tomcat, clean Tomcat's working directory, and deploy application again.

Best regards,
Victor
#822
Hi,

syntax for accessing event parameters within filter script is different from macro expansion. You can access event object via global variable $event. It has attribute "parameters" which is array of all event parameters. You can either use this attribute or you can use expandString method to expand standard macros. So your filter script could be in one of two forms:


return $event->parameters[6] ilike "C:\\";


or


return $event->expandString("%6") ilike "C:\\";


Best regards,
Victor
#823
Hi all!

NetXMS 3.4 patch release 2 is published. Changes since previous release:

- PostgreSQL monitoring subagent
- Improved driver for Cisco Nexus
- Improved LLDP based network topology discovery
- Correctly detect LLDP capability on Mikrotik devices
- New NXSL functions GetServerNode and GetServerNodeId
- New NXSL function SendMail
- Fixed UI bug with accessing collected performance data from data collection editor
- Configurable size of SNMP proxy thread pool on agent
- Housekeeper optimization
- Added drivers for Cambium Networks devices (ePMP and cnPilot)
- Fixed issues:
        NX-1863 (Logwatch fails on parsing large Windows Event Log events)
        NX-1880 (Duplicate links on automatic maps with multiple seed nodes)
        NX-1895 (After server restart GUI is not showing from where a custom attribute is inherited)
        NX-1897 (ReadPersistentStorage returns incorrect value for non-existing key)
        NX-1901 (Get node of active NetXMS server in NXSL)
        NX-1910 (Spelling mistakes in Java API)

There were no changes in agents besides WIndows, so agent packages were not updated and 3.4.232 still good to use.

Best regards,
Victor
#824
Общие вопросы / Re: Сеть на L3
July 31, 2020, 02:44:58 PM
Да, получится. Серверу мониторинга нужен доступ по SNMP ко всем устройствам, а дальше собственно карты строятся на основе собранных данных. Для карт второго уровня это LLDP, CDP, таблицы MAC адресов, и т.д. Для карт IP уровня это сетевые интерфейсы и их адреса.
#825
General Support / Re: DCIs Description changing
July 29, 2020, 05:12:36 PM
Hi,

pay attention to case - it is modifyObject, not modifyobject.

Best regards,
Victor