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

#1156
NXSL issue is fixed in version 3.0.2287 (only server has to be upgraded).

Best regards,
Victor
#1157
Hi all!

NetXMS patch release 1 (version 3.0.2284) is out. It fixes some issues in initial 3.0 release:

- Fixed Windows agent bug: socket handles inherited by child processes
- Fixed FreeBSD 12 build errors
- Fixed bug in reading network interface stats on Solaris 11
- HTTP/2 included into default pattern in netsvc and portcheck subagents for HTTP/HTTPS protocol check
- Fixed broken "Find IP address" function in management console
- New default tile server for geo maps
- Fixed bug in database migration to TimescaleDB
- Fixed network map view crash if map has more than 9 links between two objects
- Fixed incorrect handling of password expiration warning in Oracle database driver
- Fixed file handle leak in server
- Unused capture groups in NXSL regexp matching not reset to NULL
- Regexp matching operation in NXSL returns array of capture groups on success
- Agent returns correct version (without build hash) in Agent.Version parameter
- Interface alias correctly set on interface object creation
- Fixed minor memory leak in server

Best regards,
Victor
#1158
I would suggest upgrading to 2.2.17 or 3.0. We have fixed various deadlocks since 2.2.16, there are good chances that your problem is fixed.

Best regards,
Victor
#1159
Общие вопросы / Re: Поиск по IP и MAC
September 18, 2019, 10:36:09 AM
Исправили, войдет в следущий patch release 3.0.
#1161
Grafana definitely can be used as publishing front end for customers as you can have completely separate access control.

Best regards,
Victor
#1162
General Support / Re: Error libpcre32 on CentOS 6
September 17, 2019, 11:54:01 AM
I suspect that compiler shipped with CentOS 6 may be too old. My recommendation is to upgrade platform to CentOS 7.

Best regards,
Victor
#1163
General Support / Re: help with aggregate DCI
September 16, 2019, 06:50:39 PM
You initialize variable activeDCIs to 1, which gives you incorrect result - if you have 36 cores line

activeDCIs++;

will be execured 36 times and result will be 37.

Best regards,
Victor
#1164
Announcements / Re: NetXMS 3.0 released
September 16, 2019, 06:00:50 PM
Did you clone it from our repository? Because latest version still waiting for approval to get into official Grafana plugin list.

Best regards,
Victor
#1165
General Support / Re: help with aggregate DCI
September 16, 2019, 04:52:57 PM
Quote from: Egert143 on September 16, 2019, 02:03:33 PM
When i use "if (dci->name like "*{instance}") continue;" it doesent match.

Please share full script code. I checked on my system and it works as expected.

Best regards,
Victor
#1166
General Support / Re: help with aggregate DCI
September 16, 2019, 10:56:01 AM
You can do something like

for (dci : FindAllDCIs($node, ".1.3.6.1.2.1.25.3.3.1.2.*"))
{
   if (dci->name like "*{instance}")
      continue;
   // your code here
}


Best regards,
Victor
#1167
General Support / Re: Error libpcre32 on CentOS 6
September 16, 2019, 10:53:47 AM
Hi,

you have to manually install newer libpcre and configure it with libpcre32 enabled. You can use this version: https://ftp.pcre.org/pub/pcre/pcre-8.43.tar.gz and configure it as following:

./configure --prefix=/opt/pcre --disable-static --disable-dependency-tracking --enable-pcre16 --enable-pcre32 --disable-cpp --enable-utf --enable-unicode-properties --disable-stack-for-recursion

It will install correct pcre into /opt/pcre (you can choose different prefix of course). Then add option --with-pcre=/opt/pcre to NetXMS configure.

Best regards,
Victor
#1168
Зарегистрировал как баг (https://track.radensolutions.com/issue/NX-1676), попробуем повторить у себя.
#1169
General Support / Re: help with aggregate DCI
September 15, 2019, 06:21:02 PM
Hi,

yes, script is valid, but you have to remember that it search DCIs by name (parameter name). Are you sure you have parameter names Cpu 1, etc. and not DCI descriptions?

Best regards,
Victor
#1170
Announcements / Re: NetXMS 3.0 released
September 15, 2019, 06:11:24 PM
Hi,

there are issues with libraries needed by 3.0 in Debian Jessie and so far we have no plans to provide Debian Jessie packages for version 3.0.

Best regards,
Victor