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

#1126
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
#1127
Общие вопросы / Re: Поиск по IP и MAC
September 18, 2019, 10:36:09 AM
Исправили, войдет в следущий patch release 3.0.
#1129
Grafana definitely can be used as publishing front end for customers as you can have completely separate access control.

Best regards,
Victor
#1130
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
#1131
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
#1132
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
#1133
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
#1134
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
#1135
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
#1136
Зарегистрировал как баг (https://track.radensolutions.com/issue/NX-1676), попробуем повторить у себя.
#1137
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
#1138
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
#1139
Announcements / Re: NetXMS 3.0 released
September 13, 2019, 12:51:16 AM
Hi,

I've found bug in Windows installer. Try to rename directory C:\NetXMS\lib\ncd to C:\NetXMS\lib\ncdrv and restart NetXMS Core service.

Best regards,
Victor
#1140
General Support / Re: Nxshell no longer working
September 12, 2019, 10:08:00 PM
Sorry, I was distracted by reflective access warnings and didn't notice actual method name. It was renamed to getAllChildren. We will upload javadocs for 2.2.17 and 3.0 in next few days.

Best regards,
Victor